GNU Octave  4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
oct-uname.cc
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2005-2015 John W. Eaton
4 
5 This file is part of Octave.
6 
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26 
27 #include <cerrno>
28 #include <cstring>
29 
30 #include <sys/utsname.h>
31 
32 #include "oct-uname.h"
33 
34 void
36 {
37  struct utsname unm;
38 
39  err = ::uname (&unm);
40 
41  if (err < 0)
42  msg = gnulib::strerror (errno);
43  else
44  {
45  utsname_sysname = unm.sysname;
46  utsname_nodename = unm.nodename;
47  utsname_release = unm.release;
48  utsname_version = unm.version;
49  utsname_machine = unm.machine;
50  }
51 }
std::string utsname_release
Definition: oct-uname.h:82
std::string utsname_machine
Definition: oct-uname.h:84
std::string msg
Definition: oct-uname.h:86
void init(void)
Definition: oct-uname.cc:35
std::string utsname_nodename
Definition: oct-uname.h:81
std::string utsname_sysname
Definition: oct-uname.h:80
std::string utsname_version
Definition: oct-uname.h:83