blob: cf4320c057fd58800d0631a289353817b73ca104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _HACK_WAIT_H_
#define _HACK_WAIT_H_
#include <cthreads.h>
struct wait_queue
{
struct condition c;
};
typedef struct select_table_struct
{
} select_table;
#endif
|