From c3352e623384fe221743a6d2212c17d9619041ef Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 29 May 1996 17:50:37 +0000 Subject: Wed May 29 12:53:10 1996 Roland McGrath * version.h (VERSION): Set to 1.90. * Makerules (distinfo-vars): Write extra-libs and *-routines for each of its elts. * MakeTAGS (sources): Add those sources. * MakeTAGS (all-sources): Add $(others:=.c) and $(tests:=.c). Wed May 29 08:53:08 1996 Miles Bader * hurd/report-wait.c (_S_msg_report_wait): Return `itimer' for the itimer thread. * hurd/hurdinit.c (_hurd_init): Set _HURDSIG_TRACED before calling _hurd_proc_init. * string/tester.c (main): Fix strsep tests 6, 7, 20 to expect null token instead of it being implicitly skipped. --- hurd/report-wait.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'hurd/report-wait.c') diff --git a/hurd/report-wait.c b/hurd/report-wait.c index 7fc92935bf..18763d0564 100644 --- a/hurd/report-wait.c +++ b/hurd/report-wait.c @@ -93,6 +93,9 @@ describe_port (string_t description, mach_port_t port) } +/* Common defn so we don't link in the itimer code unnecssarily. */ +thread_t _hurd_itimer_thread; /* XXX */ + kern_return_t _S_msg_report_wait (mach_port_t msgport, thread_t thread, string_t description, int *msgid) @@ -102,6 +105,8 @@ _S_msg_report_wait (mach_port_t msgport, thread_t thread, if (thread == _hurd_msgport_thread) /* Cute. */ strcpy (description, "msgport"); + else if (thread == _hurd_itimer_thread) + strcpy (description, "itimer"); else { /* Make sure this is really one of our threads. */ -- cgit v1.2.3