diff options
author | Miles Bader <miles@gnu.org> | 1995-08-24 19:48:26 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-24 19:48:26 +0000 |
commit | 5afd7d8a58fc5f27d8c6385abd9657f84c37f084 (patch) | |
tree | 980b234b66a47aebccc99b1ec02b0ea0155dbc3b /libports | |
parent | acc592542db8513ed12d26397e016e4fb6c90f89 (diff) |
(inhibit_port_rpcs): thread_cancel -> hurd_thread_cancel. Include <hurd.h>.
Diffstat (limited to 'libports')
-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) { |