summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/jffs2/include/linux/wait.h
blob: 2b422e34cb1e690556a7f8262ce3ef451a82e7b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __LINUX_WAIT_H__
#define __LINUX_WAIT_H__


typedef struct { } wait_queue_head_t;

#define init_waitqueue_head(wait) do{} while (0)
#define add_wait_queue(wait,new_wait) do{} while (0)
#define remove_wait_queue(wait,old_wait) do{} while (0)
#define DECLARE_WAITQUEUE(wait,current) do{} while (0)

static inline void wake_up(wait_queue_head_t *erase_wait)
{ /* Only used for waking up threads blocks on erases. Not used in eCos */ }

#endif /* __LINUX_WAIT_H__ */