Added a missing comma to the static condition variable initialisation

definition.

Submitted by: David Leonard <David.Leonard@csee.uq.edu.au>, an OpenBSD guy.
This commit is contained in:
John Birrell 1999-05-24 07:22:55 +00:00
parent 578de0426e
commit 994d9b67a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47452
3 changed files with 3 additions and 3 deletions

View File

@ -257,7 +257,7 @@ struct pthread_cond_attr {
* Static cond initialization values.
*/
#define PTHREAD_COND_STATIC_INITIALIZER \
{ COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL \
{ COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL, \
0, _SPINLOCK_INITIALIZER }
/*

View File

@ -257,7 +257,7 @@ struct pthread_cond_attr {
* Static cond initialization values.
*/
#define PTHREAD_COND_STATIC_INITIALIZER \
{ COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL \
{ COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL, \
0, _SPINLOCK_INITIALIZER }
/*

View File

@ -257,7 +257,7 @@ struct pthread_cond_attr {
* Static cond initialization values.
*/
#define PTHREAD_COND_STATIC_INITIALIZER \
{ COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL \
{ COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL, \
0, _SPINLOCK_INITIALIZER }
/*