diff options
-rw-r--r-- | libports/inhibit-port-rpcs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libports/inhibit-port-rpcs.c b/libports/inhibit-port-rpcs.c index 60dc187f..218edc79 100644 --- a/libports/inhibit-port-rpcs.c +++ b/libports/inhibit-port-rpcs.c @@ -19,6 +19,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "ports.h" +#include <hurd.h> #include <cthreads.h> void @@ -30,7 +31,7 @@ inhibit_port_rpcs (void *portstruct) mutex_lock (&_ports_lock); for (rpc = pi->current_rpcs; rpc; rpc = rpc->next) - thread_cancel (rpc->thread); + hurd_thread_cancel (rpc->thread); while (pi->current_rpcs) { |