summaryrefslogtreecommitdiff
path: root/pfinet/linux
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-11-01 20:51:01 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-11-01 20:51:01 +0000
commit9bf42fd45219b511702a7fe75ea66f8cab9c14c6 (patch)
treede9901b6df3ba5ab773e4281eb606af41484587f /pfinet/linux
parent323596bf9c6467cc985be186a0a608bd3d52795a (diff)
entered into RCS
Diffstat (limited to 'pfinet/linux')
-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