1 | /* $Id: RTMpGetCount-posix.cpp 7357 2008-03-07 13:11:02Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - RTMpGetCount, POSIX.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*******************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *******************************************************************************/
|
---|
31 | #include <iprt/mp.h>
|
---|
32 | #include <iprt/assert.h>
|
---|
33 |
|
---|
34 | #include <unistd.h>
|
---|
35 | #if !defined(RT_OS_SOLARIS)
|
---|
36 | # include <sys/sysctl.h>
|
---|
37 | #endif
|
---|
38 |
|
---|
39 |
|
---|
40 | RTDECL(RTCPUID) RTMpGetCount(void)
|
---|
41 | {
|
---|
42 | int cCpus; NOREF(cCpus);
|
---|
43 |
|
---|
44 | /*
|
---|
45 | * The sysconf way (linux and others).
|
---|
46 | */
|
---|
47 | #ifdef _SC_NPROCESSORS_ONLN
|
---|
48 | cCpus = sysconf(_SC_NPROCESSORS_ONLN);
|
---|
49 | if (cCpus >= 1)
|
---|
50 | return cCpus;
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | /*
|
---|
54 | * The BSD 4.4 way.
|
---|
55 | */
|
---|
56 | #if defined(CTL_HW) && defined(HW_NCPU)
|
---|
57 | int aiMib[2];
|
---|
58 | aiMib[0] = CTL_HW;
|
---|
59 | aiMib[1] = HW_NCPU;
|
---|
60 | cCpus = -1;
|
---|
61 | size_t cb = sizeof(cCpus);
|
---|
62 | int rc = sysctl(aiMib, ELEMENTS(aiMib), &cCpus, &cb, NULL, 0);
|
---|
63 | if (rc != -1 && cCpus >= 1)
|
---|
64 | return cCpus;
|
---|
65 | #endif
|
---|
66 | return 1;
|
---|
67 | }
|
---|
68 |
|
---|