diff options
Diffstat (limited to 'libthreads/mig_support.c')
-rw-r--r-- | libthreads/mig_support.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libthreads/mig_support.c b/libthreads/mig_support.c index e9c834fb..52936505 100644 --- a/libthreads/mig_support.c +++ b/libthreads/mig_support.c @@ -106,6 +106,13 @@ mig_init(initial) } } +void +__mig_init (initial) + register cproc_t initial; +{ + mig_init (initial); +} + /* * Called by mig interface code whenever a reply port is needed. */ @@ -130,6 +137,12 @@ mig_get_reply_port() return reply_port; } +mach_port_t +__mig_get_reply_port() +{ + return mig_get_reply_port(); +} + /* * Called by mig interface code after a timeout on the reply port. * May also be called by user. @@ -155,3 +168,9 @@ mig_dealloc_reply_port() (void) mach_port_mod_refs(mach_task_self(), reply_port, MACH_PORT_RIGHT_RECEIVE, -1); } + +void +__mig_dealloc_reply_port () +{ + mig_dealloc_reply_port (); +} |