diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-07-20 10:11:16 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-07-20 10:11:16 -0400 |
commit | d76bf83a5e8eb9a0b4e194f83cfadd8d55c00dfd (patch) | |
tree | 8e7af4b896c122b1d91b8abb2024ea8f115f5d0e /src/c | |
parent | 1500c4fedf82243dfbee5fff8ea392905f0a8c80 (diff) |
Form binding parameters threaded through
Diffstat (limited to 'src/c')
-rw-r--r-- | src/c/driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/driver.c b/src/c/driver.c index f79c166d..ac0b0c86 100644 --- a/src/c/driver.c +++ b/src/c/driver.c @@ -207,7 +207,7 @@ int main(int argc, char *argv[]) { pthread_mutex_lock(&queue_mutex); enqueue(new_fd); - pthread_mutex_unlock(&queue_mutex); pthread_cond_broadcast(&queue_cond); + pthread_mutex_unlock(&queue_mutex); } } |