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