1
1
This commit was SVN r1160.
Этот коммит содержится в:
Tim Woodall 2004-05-26 19:00:47 +00:00
родитель 31c0171c51
Коммит 6daa499427
3 изменённых файлов: 17 добавлений и 19 удалений

Просмотреть файл

@ -10,8 +10,7 @@
#include <unistd.h>
#include <libgen.h>
#include "constants.h"
#include "include/constants.h"
#include "util/os_create_dirpath.h"
#include "util/sys_info.h"

Просмотреть файл

@ -11,8 +11,7 @@
#include <libgen.h>
#include <sys/param.h>
#include "constants.h"
#include "include/constants.h"
#include "util/os_path.h"
#include "util/sys_info.h"

Просмотреть файл

@ -9,23 +9,23 @@
#include <pwd.h>
#include <sys/stat.h>
#include "constants.h"
#include "include/constants.h"
#include "util/sys_info.h"
ompi_sys_info_t ompi_system_info = {.init = false,
.sysname = NULL,
.nodename = NULL,
.release = NULL,
.version = NULL,
.machine = NULL,
.path_sep = NULL,
.user = NULL,
.session_dir = NULL,
.enviro = NULL,
.suffix = NULL,
.sock_stdin = NULL,
.sock_stdout = NULL,
.sock_stderr = NULL};
ompi_sys_info_t ompi_system_info = {false,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL};
void ompi_sys_info(void)