diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-08-15 09:37:55 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-08-29 01:49:42 +0200 |
commit | ecceb56c6581b5eddf240112da7052e1d2f96af7 (patch) | |
tree | 715362352fca692362d1e4354c142fa3343e9a13 /proc/proc.h | |
parent | c879fee5caa893af35d93dc159202d8cafb0b5ae (diff) | |
download | hurd-ecceb56c6581b5eddf240112da7052e1d2f96af7.tar.gz hurd-ecceb56c6581b5eddf240112da7052e1d2f96af7.tar.bz2 hurd-ecceb56c6581b5eddf240112da7052e1d2f96af7.zip |
proc: make the function check_owner available
Make the function check_owner available for use in other files.
* proc/info.c (check_owner): Drop attributes static and inline.
* proc/proc.h (check_owner): Add prototype.
Diffstat (limited to 'proc/proc.h')
-rw-r--r-- | proc/proc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proc/proc.h b/proc/proc.h index 247795dc..b7a95662 100644 --- a/proc/proc.h +++ b/proc/proc.h @@ -157,6 +157,7 @@ process_drop (struct proc *p) /* Forward declarations */ void complete_wait (struct proc *, int); int check_uid (struct proc *, uid_t); +int check_owner (struct proc *, struct proc *); void addalltasks (void); void prociterate (void (*)(struct proc *, void *), void *); void count_up (void *); |