diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-30 17:29:04 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-12-02 17:31:14 +0100 |
commit | 89c0598d4c1c414c7c567995fd1d0e569fee3d08 (patch) | |
tree | 7918fe24f504272a8f7325264c8d013faba00c70 | |
parent | a148e931c6c6a7d2a5e602f188d67e199082ae0a (diff) |
proc: improve the message_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.
* proc/main.c (message_demuxer): Improve the demuxer function.
-rw-r--r-- | proc/main.c | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/proc/main.c b/proc/main.c index aaaa5a77..5d6dc212 100644 --- a/proc/main.c +++ b/proc/main.c @@ -38,18 +38,24 @@ int message_demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) { - extern int process_server (mach_msg_header_t *, mach_msg_header_t *); - extern int notify_server (mach_msg_header_t *, mach_msg_header_t *); - extern int proc_exc_server (mach_msg_header_t *, mach_msg_header_t *); - int status; - - pthread_mutex_lock (&global_lock); - status = (process_server (inp, outp) - || notify_server (inp, outp) - || ports_interrupt_server (inp, outp) - || proc_exc_server (inp, outp)); - pthread_mutex_unlock (&global_lock); - return status; + mig_routine_t process_server_routine (mach_msg_header_t *); + mig_routine_t notify_server_routine (mach_msg_header_t *); + mig_routine_t ports_interrupt_server_routine (mach_msg_header_t *); + mig_routine_t proc_exc_server_routine (mach_msg_header_t *); + + mig_routine_t routine; + if ((routine = process_server_routine (inp)) || + (routine = notify_server_routine (inp)) || + (routine = ports_interrupt_server_routine (inp)) || + (routine = proc_exc_server_routine (inp))) + { + pthread_mutex_lock (&global_lock); + (*routine) (inp, outp); + pthread_mutex_unlock (&global_lock); + return TRUE; + } + else + return FALSE; } pthread_mutex_t global_lock = PTHREAD_MUTEX_INITIALIZER; |