Mercurial > hg > octave-nkf
annotate liboctave/oct-uname.cc @ 10687:a8ce6bdecce5
Improve documentation strings.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Tue, 08 Jun 2010 20:22:38 -0700 |
parents | bbe99b2a5ba7 |
children | fd0a3ac60b0e |
rev | line source |
---|---|
5547 | 1 /* |
2 | |
7017 | 3 Copyright (C) 2005, 2007 John W. Eaton |
5547 | 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
5547 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
5547 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include <cerrno> | |
10463
bbe99b2a5ba7
undo recent gnulib-related changes
John W. Eaton <jwe@octave.org>
parents:
10447
diff
changeset
|
28 #include <cstring> |
5547 | 29 |
30 #ifdef HAVE_SYS_UTSNAME_H | |
31 #include <sys/utsname.h> | |
32 #endif | |
33 | |
34 #include "oct-uname.h" | |
35 | |
36 void | |
37 octave_uname::init (void) | |
38 { | |
39 #if defined (HAVE_UNAME) && defined (HAVE_SYS_UTSNAME_H) | |
40 struct utsname unm; | |
41 | |
42 err = ::uname (&unm); | |
43 | |
44 if (err < 0) | |
10411 | 45 msg = gnulib::strerror (errno); |
5547 | 46 else |
47 { | |
48 utsname_sysname = unm.sysname; | |
49 utsname_nodename = unm.nodename; | |
50 utsname_release = unm.release; | |
51 utsname_version = unm.version; | |
52 utsname_machine = unm.machine; | |
53 } | |
54 #endif | |
55 } |