diff options
author | drh <drh@noemail.net> | 2011-06-21 01:29:16 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-06-21 01:29:16 +0000 |
commit | 34ffcfff0207a6b41e8b8bc3c5e4c1c7bd6a32ae (patch) | |
tree | 832dc6bbf38cac3893ec5c03f6dca22b78839167 /src/test_thread.c | |
parent | 467eb01caa841f93c1d6c25f0fc192f052343dbe (diff) | |
parent | 3c22c604344462ab2cd3fa0be9a4ce4e101eb0b2 (diff) | |
download | sqlite-34ffcfff0207a6b41e8b8bc3c5e4c1c7bd6a32ae.tar.gz sqlite-34ffcfff0207a6b41e8b8bc3c5e4c1c7bd6a32ae.zip |
Merge the latest trunk changes into the sessions branch.
FossilOrigin-Name: f3d148e0d10e16cd744ec88a2961fd617368c5ed
Diffstat (limited to 'src/test_thread.c')
-rw-r--r-- | src/test_thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test_thread.c b/src/test_thread.c index ef191bc2d..3a13dd668 100644 --- a/src/test_thread.c +++ b/src/test_thread.c @@ -404,9 +404,9 @@ static int clock_seconds_proc( */ typedef struct UnlockNotification UnlockNotification; struct UnlockNotification { - int fired; /* True after unlock event has occured */ - pthread_cond_t cond; /* Condition variable to wait on */ - pthread_mutex_t mutex; /* Mutex to protect structure */ + int fired; /* True after unlock event has occurred */ + pthread_cond_t cond; /* Condition variable to wait on */ + pthread_mutex_t mutex; /* Mutex to protect structure */ }; /* |