summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/jffs2/include/linux/wait.h
blob: ba355b52526400a02362d1928e05b80424143669 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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) { }

#endif /* __LINUX_WAIT_H__ */