summaryrefslogtreecommitdiff
path: root/pool.h
AgeCommit message (Collapse)Author
2023-08-03fixing for platforms, where pthread_t is not numeric (as for musl, where it ↵Andreas Baumann
is a pointer, POSIX sadly did away with the requirement that pthread_t must be a numeric): - printing thread ids as pointers with '%p' instead of converting them to unsigned int and printing them with '%u' - using separate 'avail' and 'thread' arrays in pools to record status of pooled database connections
2015-06-11updated copyright and email addressAndreas Baumann
2012-04-19fixed pooling (using conn pointer, not fuse_context->pid() )Andreas Baumann
fixed thread in verbose debug messages added a missing RELEASE in fgetattr (pgfuse was naturally blocking)
2012-04-19added a first multi-threaded version with a databse poolAndreas Baumann