diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-09-12 23:28:33 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-09-12 23:28:33 +0000 |
commit | 37a67fe80f95310bee92b9413e296361e87a0137 (patch) | |
tree | bcfbf5bb36d2b17fca2187d0ebfb362d433aa953 /hurd | |
parent | eb6621cff2b87c7f3f89a774cac2bf57a10f3b51 (diff) |
Formerly auth.defs.~17~
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/auth.defs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/hurd/auth.defs b/hurd/auth.defs index e2532caa..56f95eb2 100644 --- a/hurd/auth.defs +++ b/hurd/auth.defs @@ -36,10 +36,10 @@ AUTH_IMPORTS /* Given an authentication handle, return the identification. */ routine auth_getids ( handle: auth_t; - out gen_uids: idarray_t; - out aux_uids: idarray_t; - out gen_gids: idarray_t; - out aux_gids: idarray_t); + out gen_uids: idarray_t, dealloc; + out aux_uids: idarray_t, dealloc; + out gen_gids: idarray_t, dealloc; + out aux_gids: idarray_t, dealloc); /* Create a new authentication handle. */ routine auth_makeauth ( @@ -73,9 +73,9 @@ routine auth_server_authenticate ( rendezvous: mach_port_send_t; rendezvous2: mach_port_send_t; newport: mach_port_send_t; - out gen_uids: idarray_t; - out aux_uids: idarray_t; - out gen_gids: idarray_t; - out aux_gids: idarray_t); + out gen_uids: idarray_t, dealloc; + out aux_uids: idarray_t, dealloc; + out gen_gids: idarray_t, dealloc; + out aux_gids: idarray_t, dealloc); |