From 65fc84b32e2a558cca3a66587ac4cd06e16f1471 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 27 Jan 2004 08:14:33 +0000 Subject: [PATCH] Better pid handling. --- cleanup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cleanup.c b/cleanup.c index 3e85d4e1..779f284c 100644 --- a/cleanup.c +++ b/cleanup.c @@ -72,7 +72,7 @@ static char *cleanup_new_fname; static struct file_struct *cleanup_file; static int cleanup_fd1, cleanup_fd2; static struct map_struct *cleanup_buf; -static int cleanup_pid = 0; +static pid_t cleanup_pid = 0; extern int io_error; pid_t cleanup_child_pid = -1; @@ -124,7 +124,7 @@ void _exit_cleanup(int code, const char *file, int line) if (code) { kill_all(SIGUSR1); } - if ((cleanup_pid != 0) && (cleanup_pid == (int) getpid())) { + if (cleanup_pid && cleanup_pid == getpid()) { char *pidf = lp_pid_file(); if (pidf && *pidf) { unlink(lp_pid_file()); @@ -166,7 +166,7 @@ void cleanup_set(char *fnametmp, char *fname, struct file_struct *file, cleanup_fd2 = fd2; } -void cleanup_set_pid(int pid) +void cleanup_set_pid(pid_t pid) { cleanup_pid = pid; } -- 2.34.1