FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
thread_cond.c
Go to the documentation of this file.
1
/* condition variable functions */
2
3
#include "../fb.h"
4
5
FBCALL
FBCOND
*
fb_CondCreate
(
void
)
6
{
7
return
NULL
;
8
}
9
10
FBCALL
void
fb_CondDestroy
(
FBCOND
*
cond
)
11
{
12
}
13
14
FBCALL
void
fb_CondSignal
(
FBCOND
*
cond
)
15
{
16
}
17
18
FBCALL
void
fb_CondBroadcast
(
FBCOND
*
cond
)
19
{
20
}
21
22
FBCALL
void
fb_CondWait
(
FBCOND
*
cond
,
FBMUTEX
*
mutex
)
23
{
24
}
rtlib
xbox
thread_cond.c
Generated on Thu Jan 23 2014 19:40:10 for FreeBASIC by
1.8.4