URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [compat/] [linux/] [v2_0/] [include/] [linux/] [wait.h] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
#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__ */
Go to most recent revision | Compare with Previous | Blame | View Log