diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-06 13:10:07 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-09 19:32:57 +0100 |
commit | cb92b7618edec56b534f89129556ba74b62e4c6e (patch) | |
tree | dcc95fa99f0d1af1901f8840c5cf252f0977f2e3 /proc | |
parent | 38bd193c9908d88f26f36ed62298b0b1ad13d2cb (diff) |
proc: remove declaration of nested functions from proc.h
Remove the declaration of count_up and strore_pid from proc.h. The
functions are defined as nested functions in S_proc_getallpids, there
is no need to declare them. Furthermore, the declaration does not
match the definition.
* proc/proc.h: Remove declaration of count_up and strore_pid.
Diffstat (limited to 'proc')
-rw-r--r-- | proc/proc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/proc/proc.h b/proc/proc.h index 80f83973..5615f77b 100644 --- a/proc/proc.h +++ b/proc/proc.h @@ -161,8 +161,6 @@ 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 *); -void store_pid (void *); void free_process (struct proc *); void panic (char *); int valid_task (task_t); |