summaryrefslogtreecommitdiff
path: root/common/library.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't shove messages into debug output if they're already displayedStef Walter2013-03-081-2/+2
|
* Fix syntax errors in OS_WIN32 ifdefsStef Walter2013-03-031-3/+3
|
* Only do shared object and DLL initialization in librariesStef Walter2013-02-201-49/+11
| | | | | | Don't do library initialization on shared object load when not running in a library. We'll want to plug into this and do different things per library in the future.
* Add internal function for turning on messagesStef Walter2013-02-051-0/+8
| | | | To be used from tests
* Use the stdbool.h C99 bool typeStef Walter2013-01-231-2/+2
| | | | | | It was getting really wild knowing whether a function returning an int would return -1 on failure or 0 or whether the int return value was actually a number etc..
* Only initialize p11-kit libraries onceStef Walter2013-01-091-4/+10
| | | | * Make the gcc constructor call p11_library_init_once()
* Move debug and library code into the common/ subdirectoryStef Walter2013-01-091-0/+286
Start using p11_ as our internal prefix rather than _p11_. We explicitly export p11_kit_ so this is fine as far as visibility. Move the threading, mutex, and module compat, dict, and array code into the common directory too. Take this opportunity to clean up a bit of internal API as well, since so many lines are being touched internally.