Moved all references to file descriptors out of the generic object
structure.
Changed the poll()-related routines to deal with file descriptors
instead of objects and integrated poll support into fd.c.
diff --git a/server/handle.c b/server/handle.c
index 6fa8f71..4a2b4ef 100644
--- a/server/handle.c
+++ b/server/handle.c
@@ -154,7 +154,7 @@
struct handle_table *table;
if (count < MIN_HANDLE_ENTRIES) count = MIN_HANDLE_ENTRIES;
- if (!(table = alloc_object( &handle_table_ops, -1 )))
+ if (!(table = alloc_object( &handle_table_ops )))
return NULL;
table->process = process;
table->count = count;