예제 #1
0
파일: main.c 프로젝트: adriano-io/webserver
static void
clean_up (void)
{
#ifdef HAVE_SYSV_SEMAPHORES
	spawn_clean();
#endif
	pid_file_clean (pid_file_path);
}
예제 #2
0
static void
clean_up (void)
{
#ifdef HAVE_POSIX_SHM
    spawn_clean();
#endif

    if (pid_file_path) {
        pid_file_clean (pid_file_path);
    }
}
예제 #3
0
파일: main.c 프로젝트: kl3mz/webserver
static void
clean_up (void)
{
    cherokee_services_server_free ();
    pid_file_clean (pid_file_path);
}