summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pfinet/linux/wait.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/pfinet/linux/wait.h b/pfinet/linux/wait.h
index cf4320c0..15759ad2 100644
--- a/pfinet/linux/wait.h
+++ b/pfinet/linux/wait.h
@@ -8,8 +8,16 @@ struct wait_queue
struct condition c;
};
+struct select_table_elt
+{
+ struct condition *dependent_condition;
+ struct select_table_elt *next;
+};
+
typedef struct select_table_struct
{
+ struct condition master_condition;
+ struct select_table_elt *head;
} select_table;
#endif