Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:17

0001 #ifndef __LINUX_WAIT_H__
0002 #define __LINUX_WAIT_H__
0003 
0004 
0005 typedef struct { } wait_queue_head_t;
0006 
0007 #define init_waitqueue_head(wait) do{} while (0)
0008 #define add_wait_queue(wait,new_wait) do{} while (0)
0009 #define remove_wait_queue(wait,old_wait) do{} while (0)
0010 #define DECLARE_WAITQUEUE(wait,current) do{} while (0)
0011 
0012 static inline void wake_up(wait_queue_head_t *erase_wait) { }
0013 
0014 #endif /* __LINUX_WAIT_H__ */