diff options
Diffstat (limited to 'src/pulsecore/pid.h')
-rw-r--r-- | src/pulsecore/pid.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/pulsecore/pid.h b/src/pulsecore/pid.h index 0f25d1c8..3c8a9de3 100644 --- a/src/pulsecore/pid.h +++ b/src/pulsecore/pid.h @@ -1,8 +1,6 @@ #ifndef foopidhfoo #define foopidhfoo -/* $Id$ */ - /*** This file is part of PulseAudio. @@ -24,9 +22,9 @@ USA. ***/ -int pa_pid_file_create(void); +int pa_pid_file_create(const char *procname); int pa_pid_file_remove(void); -int pa_pid_file_check_running(pid_t *pid); -int pa_pid_file_kill(int sig, pid_t *pid); +int pa_pid_file_check_running(pid_t *pid, const char *procname); +int pa_pid_file_kill(int sig, pid_t *pid, const char *procname); #endif |