HomeSort by: relevance | last modified time | path
    Searched defs:pidfile_path (Results 1 - 4 of 4) sorted by relevancy

  /src/lib/libutil/
pidfile.c 51 static char pidfile_path[PATH_MAX]; variable in typeref:typename:char[]
65 pidfile_path[0] = '\0';
90 (void) unlink(pidfile_path);
142 if (path == NULL && pidfile_path[0] != '\0')
143 path = pidfile_path;
170 * pidfile_path and pidfile_pid so that any further call to pidfile_lock(3)
195 if (pidfile_fd != -1 && strcmp(pidfile_path, path) != 0)
216 strlcpy(pidfile_path, path, sizeof(pidfile_path));
pidfile.c 51 static char pidfile_path[PATH_MAX]; variable in typeref:typename:char[]
65 pidfile_path[0] = '\0';
90 (void) unlink(pidfile_path);
142 if (path == NULL && pidfile_path[0] != '\0')
143 path = pidfile_path;
170 * pidfile_path and pidfile_pid so that any further call to pidfile_lock(3)
195 if (pidfile_fd != -1 && strcmp(pidfile_path, path) != 0)
216 strlcpy(pidfile_path, path, sizeof(pidfile_path));
  /src/libexec/httpd/
daemon-bozo.c 69 static const char* pidfile_path = NULL; variable in typeref:typename:const char *
93 if (pidfile_path != NULL && pidfile_pid == getpid()) {
94 (void)unlink(pidfile_path);
95 pidfile_path = NULL;
104 assert(pidfile_path == NULL);
118 pidfile_path = httpd->pidfile;
122 pidfile_path, pidfile_pid));
daemon-bozo.c 69 static const char* pidfile_path = NULL; variable in typeref:typename:const char *
93 if (pidfile_path != NULL && pidfile_pid == getpid()) {
94 (void)unlink(pidfile_path);
95 pidfile_path = NULL;
104 assert(pidfile_path == NULL);
118 pidfile_path = httpd->pidfile;
122 pidfile_path, pidfile_pid));

Completed in 26 milliseconds