VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/nsprpub/pr/include/prsystem.h@ 11551

Last change on this file since 11551 was 11551, checked in by vboxsync, 16 years ago

API/xpcom: prefix any C symbols in VBoxXPCOM.so, to avoid namespace pollution. Enabled only on Linux at the moment.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is the Netscape Portable Runtime (NSPR).
16 *
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38#ifndef prsystem_h___
39#define prsystem_h___
40
41/*
42** API to NSPR functions returning system info.
43*/
44#include "prtypes.h"
45
46#ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
47#define PR_GetDirectorySeparator VBoxNsprPR_GetDirectorySeparator
48#define PR_GetDirectorySepartor VBoxNsprPR_GetDirectorySepartor
49#define PR_GetPathSeparator VBoxNsprPR_GetPathSeparator
50#define PR_GetSystemInfo VBoxNsprPR_GetSystemInfo
51#define PR_GetPageSize VBoxNsprPR_GetPageSize
52#define PR_GetPageShift VBoxNsprPR_GetPageShift
53#define PR_GetNumberOfProcessors VBoxNsprPR_GetNumberOfProcessors
54#endif /* VBOX_WITH_XPCOM_NAMESPACE_CLEANUP */
55
56PR_BEGIN_EXTERN_C
57
58/*
59** Get the host' directory separator.
60** Pathnames are then assumed to be of the form:
61** [<sep><root_component><sep>]*(<component><sep>)<leaf_name>
62*/
63
64NSPR_API(char) PR_GetDirectorySeparator(void);
65
66/*
67** OBSOLETE -- the function name is misspelled.
68** Use PR_GetDirectorySeparator instead.
69*/
70
71NSPR_API(char) PR_GetDirectorySepartor(void);
72
73/*
74** Get the host' path separator.
75** Paths are assumed to be of the form:
76** <directory>[<sep><directory>]*
77*/
78
79NSPR_API(char) PR_GetPathSeparator(void);
80
81/* Types of information available via PR_GetSystemInfo(...) */
82typedef enum {
83 PR_SI_HOSTNAME,
84 PR_SI_SYSNAME,
85 PR_SI_RELEASE,
86 PR_SI_ARCHITECTURE
87} PRSysInfo;
88
89
90/*
91** If successful returns a null termintated string in 'buf' for
92** the information indicated in 'cmd'. If unseccussful the reason for
93** the failure can be retrieved from PR_GetError().
94**
95** The buffer is allocated by the caller and should be at least
96** SYS_INFO_BUFFER_LENGTH bytes in length.
97*/
98
99#define SYS_INFO_BUFFER_LENGTH 256
100
101NSPR_API(PRStatus) PR_GetSystemInfo(PRSysInfo cmd, char *buf, PRUint32 buflen);
102
103/*
104** Return the number of bytes in a page
105*/
106NSPR_API(PRInt32) PR_GetPageSize(void);
107
108/*
109** Return log2 of the size of a page
110*/
111NSPR_API(PRInt32) PR_GetPageShift(void);
112
113/*
114** PR_GetNumberOfProcessors() -- returns the number of CPUs
115**
116** Description:
117** PR_GetNumberOfProcessors() extracts the number of processors
118** (CPUs available in an SMP system) and returns the number.
119**
120** Parameters:
121** none
122**
123** Returns:
124** The number of available processors or -1 on error
125**
126*/
127NSPR_API(PRInt32) PR_GetNumberOfProcessors( void );
128
129PR_END_EXTERN_C
130
131#endif /* prsystem_h___ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette