VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/posix/RTMpGetCount-posix.cpp@ 31453

Last change on this file since 31453 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1/* $Id: RTMpGetCount-posix.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * IPRT - RTMpGetCount, POSIX.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Oracle Corporation
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
40RTDECL(RTCPUID) RTMpGetCount(void)
41{
42 /*
43 * The sysconf way (linux and others).
44 */
45#if defined(_SC_NPROCESSORS_MAX) || defined(_SC_NPROCESSORS_CONF) || defined(_SC_NPROCESSORS_ONLN)
46 int cCpusSC = -1;
47# ifdef _SC_NPROCESSORS_MAX
48 int cMax = sysconf(_SC_NPROCESSORS_MAX);
49 cCpusSC = RT_MAX(cCpusSC, cMax);
50# endif
51# ifdef _SC_NPROCESSORS_CONF
52 int cConf = sysconf(_SC_NPROCESSORS_CONF);
53 cCpusSC = RT_MAX(cCpusSC, cConf);
54# endif
55# ifdef _SC_NPROCESSORS_ONLN
56 int cOnln = sysconf(_SC_NPROCESSORS_ONLN);
57 cCpusSC = RT_MAX(cCpusSC, cOnln);
58# endif
59 Assert(cCpusSC > 0);
60 if (cCpusSC > 0)
61 return cCpusSC;
62#endif
63
64 /*
65 * The BSD 4.4 way.
66 */
67#if defined(CTL_HW) && defined(HW_NCPU)
68 int aiMib[2];
69 aiMib[0] = CTL_HW;
70 aiMib[1] = HW_NCPU;
71 int cCpus = -1;
72 size_t cb = sizeof(cCpus);
73 int rc = sysctl(aiMib, RT_ELEMENTS(aiMib), &cCpus, &cb, NULL, 0);
74 if (rc != -1 && cCpus >= 1)
75 return cCpus;
76#endif
77 return 1;
78}
79
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