author | amurillo |
Fri, 13 Jul 2012 14:06:33 -0700 | |
changeset 13207 | 3db9eaf7c6ab |
parent 12735 | 3e2e491f4f69 |
child 13963 | e5b53c306fb5 |
permissions | -rw-r--r-- |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
1 |
/* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
2 |
* Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
4 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
8 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
13 |
* accompanied this code). |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
14 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
18 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
21 |
* questions. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
22 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
23 |
*/ |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
24 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
25 |
#ifndef OS_POSIX_VM_OS_POSIX_HPP |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
26 |
#define OS_POSIX_VM_OS_POSIX_HPP |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
27 |
class Posix { |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
28 |
friend class os; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
29 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
30 |
protected: |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
31 |
static void print_distro_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
32 |
static void print_rlimit_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
33 |
static void print_uname_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
34 |
static void print_libversion_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
35 |
static void print_load_average(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
36 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
37 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
38 |
}; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
39 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
40 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
41 |
#endif |