2004-08-24 01:39:22 +04:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2004-08-24 12:44:37 +04:00
|
|
|
#include <stdlib.h>
|
2004-08-24 01:39:22 +04:00
|
|
|
|
|
|
|
#include "include/constants.h"
|
|
|
|
#include "util/daemon_init.h"
|
|
|
|
|
2004-08-30 23:25:14 +04:00
|
|
|
int ompi_daemon_init(char *working_dir)
|
2004-08-24 01:39:22 +04:00
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
if ((pid = fork()) < 0) {
|
|
|
|
return OMPI_ERROR;
|
|
|
|
} else if (pid != 0) {
|
|
|
|
exit(0); /* parent goes bye-bye */
|
|
|
|
}
|
|
|
|
/* child continues */
|
|
|
|
setsid(); /* become session leader */
|
|
|
|
|
|
|
|
if (NULL != working_dir) {
|
|
|
|
chdir(working_dir); /* change working directory */
|
|
|
|
}
|
|
|
|
|
|
|
|
umask(0); /* clear file mode creation mask */
|
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|