diff options
author | Miles Bader <miles@gnu.org> | 1995-08-24 19:49:28 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-24 19:49:28 +0000 |
commit | b476fe5860f1a745b4a119e08dfe1ab1f026fbd7 (patch) | |
tree | 771d957edac0dd0d3669bff9a58cc76e14ed7766 /libports | |
parent | 3242a6c4775c30df5d6df1dadc2724c980ddce1a (diff) |
(ports_inhibit_bucket_rpcs): thread_cancel -> hurd_thread_cancel.
Include <hurd.h>.
Diffstat (limited to 'libports')
-rw-r--r-- | libports/inhibit-bucket-rpcs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libports/inhibit-bucket-rpcs.c b/libports/inhibit-bucket-rpcs.c index d4daa17d..41918cc4 100644 --- a/libports/inhibit-bucket-rpcs.c +++ b/libports/inhibit-bucket-rpcs.c @@ -19,6 +19,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "ports.h" +#include <hurd.h> #include <cthreads.h> #include <hurd/ihash.h> @@ -31,7 +32,7 @@ ports_inhibit_bucket_rpcs (struct port_bucket *bucket) struct rpc_info *rpc; for (rpc = pi->current_rpcs; rpc; rpc = rpc->next) - thread_cancel (rpc->thread); + hurd_thread_cancel (rpc->thread); return 0; } |