1
1

Remove the runtime-environment directory RTE/universe from the makefile list since it only exists on my machine! Update the sys_info header file

This commit was SVN r1143.
Этот коммит содержится в:
Ralph Castain 2004-05-20 17:38:54 +00:00
родитель 2d709f768a
Коммит 8cc3ecb8e5
2 изменённых файлов: 17 добавлений и 1 удалений

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

@ -828,6 +828,5 @@ AC_CONFIG_FILES([
src/tools/mpirun/Makefile
src/tools/wrappers/Makefile
src/RTE/universe/Makefile
])
AC_OUTPUT

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

@ -4,6 +4,23 @@
/** @file **/
/* sys_info populates a global variable with information about the system
* upon which the program is executing. The structure contains the following
* fields:
*
* char sysname[] - the name of the operating system in use
*
* char release[] - current release level of the operating system
*
* char version[] - current version level of the operating system
*
* char machine[] - type of hardware in use
*
* char nodename[] - the network node name of the host, same as that
* returned by gethostname()
*/
#include <stdio.h>
#include <sys/utsname.h>