2004-10-13 20:21:07 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-11-22 00:37:56 +00:00
|
|
|
* $HEADER$
|
2004-10-13 20:21:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OMPI_UTSNAME_H
|
|
|
|
#define OMPI_UTSNAME_H
|
|
|
|
|
2009-03-17 01:45:19 +00:00
|
|
|
#include "opal_config.h"
|
|
|
|
|
2006-08-20 18:50:47 +00:00
|
|
|
#define OMPI_UTSNAME_LEN 64
|
2004-10-13 20:21:07 +00:00
|
|
|
|
|
|
|
struct utsname {
|
|
|
|
char sysname[OMPI_UTSNAME_LEN];
|
|
|
|
char nodename[OMPI_UTSNAME_LEN];
|
|
|
|
char release[OMPI_UTSNAME_LEN];
|
|
|
|
char version[OMPI_UTSNAME_LEN];
|
|
|
|
char machine[OMPI_UTSNAME_LEN];
|
|
|
|
};
|
|
|
|
|
2009-08-20 11:42:18 +00:00
|
|
|
BEGIN_C_DECLS
|
2006-08-20 15:54:04 +00:00
|
|
|
OPAL_DECLSPEC int uname(struct utsname *un);
|
2009-08-20 11:42:18 +00:00
|
|
|
END_C_DECLS
|
2004-10-13 20:21:07 +00:00
|
|
|
|
|
|
|
#endif /* oMPI_UTSNAME_H */
|