19 #ifndef OMPI_UTSNAME_H
20 #define OMPI_UTSNAME_H
22 #include "opal_config.h"
24 #define OMPI_UTSNAME_LEN 64
27 char sysname[OMPI_UTSNAME_LEN];
28 char nodename[OMPI_UTSNAME_LEN];
29 char release[OMPI_UTSNAME_LEN];
30 char version[OMPI_UTSNAME_LEN];
31 char machine[OMPI_UTSNAME_LEN];
35 OPAL_DECLSPEC
int uname(
struct utsname *un);
Definition: ompi_utsname.h:26