FreeBASIC  0.91.0
thread_cond.c File Reference
#include "../fb.h"
Include dependency graph for thread_cond.c:

Go to the source code of this file.

Functions

FBCALL FBCOND * fb_CondCreate (void)
 
FBCALL void fb_CondDestroy (FBCOND *cond)
 
FBCALL void fb_CondSignal (FBCOND *cond)
 
FBCALL void fb_CondBroadcast (FBCOND *cond)
 
FBCALL void fb_CondWait (FBCOND *cond, FBMUTEX *mutex)
 

Function Documentation

FBCALL void fb_CondBroadcast ( FBCOND *  cond)

Definition at line 18 of file thread_cond.c.

FBCALL FBCOND* fb_CondCreate ( void  )

Definition at line 5 of file thread_cond.c.

FBCALL void fb_CondDestroy ( FBCOND *  cond)

Definition at line 10 of file thread_cond.c.

FBCALL void fb_CondSignal ( FBCOND *  cond)

Definition at line 14 of file thread_cond.c.

FBCALL void fb_CondWait ( FBCOND *  cond,
FBMUTEX *  mutex 
)

Definition at line 22 of file thread_cond.c.