mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 08:47:35 +02:00
Fixes to cond_var
This commit is contained in:
parent
1f00e07c0a
commit
1df46b2d9f
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ typedef struct {gc_header_type hdr; tag_type tag; pthread_mutex_t lock;} mutex_t
|
|||
typedef mutex_type *mutex;
|
||||
|
||||
/* Define condition variable type */
|
||||
typedef struct {gc_header_type hdr; tag_type tag; pthread_cond_t lock;} cond_var_type;
|
||||
typedef struct {gc_header_type hdr; tag_type tag; pthread_cond_t cond;} cond_var_type;
|
||||
typedef cond_var_type *cond_var;
|
||||
|
||||
/* Define boolean type. */
|
||||
|
|
Loading…
Add table
Reference in a new issue