about summary refs log tree commit diff
path: root/hurd
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2023-01-30 01:52:53 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-02-01 23:37:40 +0100
commitfa93858a88b109a19656931e68b48d06eedff5b5 (patch)
treec6d343e5067b651687132c9f7e2691a6143f8780 /hurd
parenta979b72747e34add3433a23c0966490cd809120f (diff)
downloadglibc-fa93858a88b109a19656931e68b48d06eedff5b5.tar.gz
glibc-fa93858a88b109a19656931e68b48d06eedff5b5.tar.xz
glibc-fa93858a88b109a19656931e68b48d06eedff5b5.zip
Remove support setting custom demuxers during signal handling.
We seem to call only into the exception and message server routines.
Message-Id: <Y9dpRZs3QYk2oZm+@jupiter.tail36e24.ts.net>
Diffstat (limited to 'hurd')
-rw-r--r--hurd/msgportdemux.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/hurd/msgportdemux.c b/hurd/msgportdemux.c
index 7587beda43..676e2e5008 100644
--- a/hurd/msgportdemux.c
+++ b/hurd/msgportdemux.c
@@ -20,18 +20,6 @@
 #include <hurd/signal.h>
 #include <stddef.h>
 
-struct demux
-  {
-    struct demux *next;
-    boolean_t (*demux) (mach_msg_header_t *inp,
-			mach_msg_header_t *outp);
-  };
-
-struct demux *_hurd_msgport_demuxers = NULL;
-
-extern boolean_t __msg_server (mach_msg_header_t *inp,
-			       mach_msg_header_t *outp);
-
 static boolean_t
 msgport_server (mach_msg_header_t *inp,
 		mach_msg_header_t *outp)
@@ -40,11 +28,6 @@ msgport_server (mach_msg_header_t *inp,
 				  mach_msg_header_t *outp);
   extern boolean_t _S_exc_server (mach_msg_header_t *inp,
 				  mach_msg_header_t *outp);
-  struct demux *d;
-
-  for (d = _hurd_msgport_demuxers; d != NULL; d = d->next)
-    if ((*d->demux) (inp, outp))
-      return 1;
 
   return (_S_exc_server (inp, outp)
 	  || _S_msg_server (inp, outp));