2004-04-16  Roland McGrath  <roland@redhat.com>

	* linux/syscall.h: Support new mq_* syscalls on Linux.
	* linux/syscallent.h: Likewise.
	* linux/dummy.h: Likewise.
	* ipc.c: Likewise.
	* time.c (printsigevent): Handle SIGEV_THREAD.
	From Ulrich Drepper <drepper@redhat.com>.
	Fixes RH#120701.
diff --git a/time.c b/time.c
index 12d00f2..eb02f4c 100644
--- a/time.c
+++ b/time.c
@@ -438,6 +438,9 @@
 			   present in the userlevel definition of the
 			   struct.  */
 			tprintf("{%d}", sev._sigev_un._pad[0]);
+		else if (sev.sigev_notify == SIGEV_THREAD)
+			tprintf("{%p, %p}", sev.sigev_notify_function,
+				sev.sigev_notify_attributes);
 		else
 			tprintf("{...}");
 		tprintf("}");