add directory Linux-0.98
This commit is contained in:
22
Linux-0.98/Yggdrasil-0.98.3/usr/include/linux/wait.h
Normal file
22
Linux-0.98/Yggdrasil-0.98.3/usr/include/linux/wait.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef _LINUX_WAIT_H
|
||||
#define _LINUX_WAIT_H
|
||||
|
||||
#include <linux/limits.h>
|
||||
|
||||
#define WNOHANG 1
|
||||
#define WUNTRACED 2
|
||||
|
||||
struct wait_queue {
|
||||
struct task_struct * task;
|
||||
struct wait_queue * next;
|
||||
};
|
||||
|
||||
typedef struct select_table_struct {
|
||||
int nr;
|
||||
struct select_table_entry {
|
||||
struct wait_queue wait;
|
||||
struct wait_queue ** wait_address;
|
||||
} entry[NR_OPEN*3];
|
||||
} select_table;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user