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/proc.h | |
parent | 820241ead7e31082fa99f3e756c6aa73aae7d88b (diff) | |
download | hurd-868a820a19ff66c370cf40573ac89738386513c3.tar.gz hurd-868a820a19ff66c370cf40573ac89738386513c3.tar.bz2 hurd-868a820a19ff66c370cf40573ac89738386513c3.zip |
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/proc.h')
-rw-r--r-- | proc/proc.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/proc/proc.h b/proc/proc.h index 12f56da1..a2e3c537 100644 --- a/proc/proc.h +++ b/proc/proc.h @@ -145,13 +145,6 @@ mach_port_t generic_port; /* messages not related to a specific proc */ pthread_mutex_t global_lock; -static inline void __attribute__ ((unused)) -process_drop (struct proc *p) -{ - if (p) - ports_port_deref (p); -} - /* Forward declarations */ void complete_wait (struct proc *, int); int check_uid (struct proc *, uid_t); |