summaryrefslogtreecommitdiff
path: root/libtrivfs
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2013-11-30 17:20:40 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2013-12-02 17:31:14 +0100
commite3c983ea9d62cdd0de86a8f4c4164c692252fb74 (patch)
treee432659bb6339538c6e30196c3fe2609e7d4d45f /libtrivfs
parentceb716e88f2ade9d9abe116fe8cddf34844d71e7 (diff)
libtrivfs: improve the trivfs_demuxer function
Handle multiple request types as recommended by the Mach Server Writer's Guide section 4, subsection "Handling Multiple Request Types". This avoids initializing the reply message in every X_server function. The reply message has already been properly initialized in libports, so there is no need to call mig_reply_setup. * libtriv/demuxer.c (trivfs_demuxer): Improve the demuxer function.
Diffstat (limited to 'libtrivfs')
-rw-r--r--libtrivfs/demuxer.c30
1 files changed, 20 insertions, 10 deletions
diff --git a/libtrivfs/demuxer.c b/libtrivfs/demuxer.c
index 49ee45a8..411699fe 100644
--- a/libtrivfs/demuxer.c
+++ b/libtrivfs/demuxer.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1993, 1994 Free Software Foundation
+ Copyright (C) 1993, 1994, 2013 Free Software Foundation
This file is part of the GNU Hurd.
@@ -25,13 +25,23 @@ int
trivfs_demuxer (mach_msg_header_t *inp,
mach_msg_header_t *outp)
{
- int trivfs_fs_server (mach_msg_header_t *, mach_msg_header_t *);
- int trivfs_io_server (mach_msg_header_t *, mach_msg_header_t *);
- int trivfs_fsys_server (mach_msg_header_t *, mach_msg_header_t *);
-
- return (trivfs_io_server (inp, outp)
- || trivfs_fs_server (inp, outp)
- || ports_notify_server (inp, outp)
- || trivfs_fsys_server (inp, outp)
- || ports_interrupt_server (inp, outp));
+ mig_routine_t trivfs_io_server_routine (mach_msg_header_t *);
+ mig_routine_t trivfs_fs_server_routine (mach_msg_header_t *);
+ mig_routine_t ports_notify_server_routine (mach_msg_header_t *);
+ mig_routine_t trivfs_fsys_server_routine (mach_msg_header_t *);
+ mig_routine_t ports_interrupt_server_routine (mach_msg_header_t *);
+ mig_routine_t trivfs_ifsock_server_routine (mach_msg_header_t *);
+
+ mig_routine_t routine;
+ if ((routine = trivfs_io_server_routine (inp)) ||
+ (routine = trivfs_fs_server_routine (inp)) ||
+ (routine = ports_notify_server_routine (inp)) ||
+ (routine = trivfs_fsys_server_routine (inp)) ||
+ (routine = ports_interrupt_server_routine (inp)))
+ {
+ (*routine) (inp, outp);
+ return TRUE;
+ }
+ else
+ return FALSE;
}