diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-06 14:53:37 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-09 19:36:56 +0100 |
commit | e65dc371a1c421dcfe4b6bbf2f937ae7ef5a563d (patch) | |
tree | c80f2f16aadc0acb4c6ab2689ebd9fe84745dd18 | |
parent | cb92b7618edec56b534f89129556ba74b62e4c6e (diff) |
proc: fix the declaraton of genpid
* proc/proc.h (genpid): Fix declaration.
-rw-r--r-- | proc/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proc/proc.h b/proc/proc.h index 5615f77b..dcfc0dbc 100644 --- a/proc/proc.h +++ b/proc/proc.h @@ -164,7 +164,7 @@ void prociterate (void (*)(struct proc *, void *), void *); void free_process (struct proc *); void panic (char *); int valid_task (task_t); -int genpid (); +int genpid (void); void abort_getmsgport (struct proc *); int zombie_check_pid (pid_t); void check_message_dying (struct proc *, struct proc *); |