blob: 15759ad29240c42f30810abeb29fda3cc57a4618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _HACK_WAIT_H_
#define _HACK_WAIT_H_
#include <cthreads.h>
struct wait_queue
{
struct condition c;
};
struct select_table_elt
{
struct condition *dependent_condition;
struct select_table_elt *next;
};
typedef struct select_table_struct
{
struct condition master_condition;
struct select_table_elt *head;
} select_table;
#endif
|