diff options
author | Michael I. Bushnell <mib@gnu.org> | 1993-11-16 07:18:59 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1993-11-16 07:18:59 +0000 |
commit | 9359bb0d09864e95426e72d470c5b5cdcc2dd886 (patch) | |
tree | 59d48737f1cff2287f4eb5c7aba3fa40713c15a0 /libthreads | |
parent | 4e66e517913ef39ad2a3627a8f1ce3fcdfe15e6a (diff) |
Formerly mig_support.c.~2~
Diffstat (limited to 'libthreads')
-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 (); +} |