diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-16 10:13:02 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-16 18:55:08 +0200 |
commit | 868a820a19ff66c370cf40573ac89738386513c3 (patch) | |
tree | 5707998734db6f10ec8d133bf3a5da3df7cf6cbc /proc/mig-mutate.h | |
parent | 820241ead7e31082fa99f3e756c6aa73aae7d88b (diff) |
proc: move translation functions to mig-decls.h
* proc/hash.c (reqport_find): Move this function...
* proc/proc.h (process_drop): ... and this...
* proc/mig-decls.h: ... here and rename them.
* proc/mig-mutate.h: Update accordingly.
Diffstat (limited to 'proc/mig-mutate.h')
-rw-r--r-- | proc/mig-mutate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proc/mig-mutate.h b/proc/mig-mutate.h index ad6eb321..ce9f88e6 100644 --- a/proc/mig-mutate.h +++ b/proc/mig-mutate.h @@ -19,11 +19,11 @@ #define PROCESS_INTRAN \ - pstruct_t reqport_find (process_t) + pstruct_t begin_using_proc_port (process_t) #define PROCESS_DESTRUCTOR \ - process_drop (pstruct_t) + end_using_proc (pstruct_t) #define PROCESS_IMPORTS \ - import "proc.h"; + import "mig-decls.h"; #define NOTIFY_INTRAN \ port_info_t begin_using_port_info_port (mach_port_t) |