diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-28 14:43:31 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-12-07 15:38:18 +0100 |
commit | edfeb493f9d95e64b747a11abb528d81da47b16a (patch) | |
tree | 4e7b3297939afeb1879ae3defa1cae1571506202 | |
parent | d3bbc5f4309b85e36e260e9c0ece006b131db3f5 (diff) |
auth: add a payload-aware intrans function
* auth/mig-mutate.h: Add mutator.
* auth/mig-decls.h (auth_payload_to_handle): New function.
-rw-r--r-- | auth/mig-decls.h | 6 | ||||
-rw-r--r-- | auth/mig-mutate.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/auth/mig-decls.h b/auth/mig-decls.h index 09c7c70a..fa7b06d3 100644 --- a/auth/mig-decls.h +++ b/auth/mig-decls.h @@ -32,6 +32,12 @@ auth_port_to_handle (mach_port_t auth) return ports_lookup_port (auth_bucket, auth, authhandle_portclass); } +static inline struct authhandle * __attribute__ ((unused)) +auth_payload_to_handle (unsigned long payload) +{ + return ports_lookup_payload (auth_bucket, payload, authhandle_portclass); +} + static inline void __attribute__ ((unused)) end_using_authhandle (struct authhandle *auth) { diff --git a/auth/mig-mutate.h b/auth/mig-mutate.h index ea40c707..5cc89147 100644 --- a/auth/mig-mutate.h +++ b/auth/mig-mutate.h @@ -20,5 +20,6 @@ /* CPP definitions for MiG processing of auth.defs for auth server. */ #define AUTH_INTRAN authhandle_t auth_port_to_handle (auth_t) +#define AUTH_INTRAN_PAYLOAD authhandle_t auth_payload_to_handle #define AUTH_DESTRUCTOR end_using_authhandle (authhandle_t) #define AUTH_IMPORTS import "mig-decls.h"; |