Skip to content
Snippets Groups Projects
Commit ef576d63 authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

make condvar.h compile as C code

parent 044a2527
No related branches found
No related tags found
No related merge requests found
......@@ -32,8 +32,8 @@ typedef struct condvar {
// to be woken) towards newest. The ccondvar_wait structures
// themselves are held on the stack of the waiting thread - so no
// dynamic memory allocation is needed for this list.
ccondvar_waiter *oldest;
ccondvar_waiter *newest;
struct ccondvar_waiter *oldest;
struct ccondvar_waiter *newest;
} waiters_fifo;
#ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment