diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-11-25 23:58:08 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-11-25 23:58:08 +0000 |
commit | 630bf55d4bcd45540ca397d6b83c9465380dd008 (patch) | |
tree | 56ead8cdd2b5595b57d1dad38f24b08657c6f413 /libmachdev/ds_routines.c | |
parent | b474ef57e5e75f798250c42e88639fc25595142b (diff) | |
parent | 4ba1188ef5ef2caf46cfedb522e83abf9d59fc54 (diff) |
Merge branch 'dde-clean' into upstream-merged
Diffstat (limited to 'libmachdev/ds_routines.c')
-rw-r--r-- | libmachdev/ds_routines.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c index 6b8d1d4d..63457553 100644 --- a/libmachdev/ds_routines.c +++ b/libmachdev/ds_routines.c @@ -59,7 +59,6 @@ #include <hurd.h> #include <mach.h> -#include <cthreads.h> #include <ddekit/thread.h> @@ -467,7 +466,7 @@ void reg_dev_emul (struct device_emulation_ops *ops) emulation_list[num_emul++] = ops; } -void ds_server() +void * ds_server(void *arg) { /* This thread calls Linux functions, * so I need to make it known to the Linux environment. */ @@ -478,4 +477,6 @@ void ds_server() { ports_manage_port_operations_one_thread (port_bucket, demuxer, 0); } while (1); + + return NULL; } |