VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/posix/system-posix.cpp@ 5285

Last change on this file since 5285 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1/* $Id: system-posix.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - System, 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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#include <iprt/system.h>
23#include <iprt/assert.h>
24
25#include <unistd.h>
26#if !defined(RT_OS_SOLARIS)
27# include <sys/sysctl.h>
28#endif
29
30
31/**
32 * Gets the number of logical (not physical) processors in the system.
33 *
34 * @returns Number of logical processors in the system.
35 */
36RTR3DECL(unsigned) RTSystemProcessorGetCount(void)
37{
38 int cCpus; NOREF(cCpus);
39
40 /*
41 * The sysconf way (linux and others).
42 */
43#ifdef _SC_NPROCESSORS_ONLN
44 cCpus = sysconf(_SC_NPROCESSORS_ONLN);
45 if (cCpus >= 1)
46 return cCpus;
47#endif
48
49 /*
50 * The BSD 4.4 way.
51 */
52#if defined(CTL_HW) && defined(HW_NCPU)
53 int aiMib[2];
54 aiMib[0] = CTL_HW;
55 aiMib[1] = HW_NCPU;
56 cCpus = -1;
57 size_t cb = sizeof(cCpus);
58 int rc = sysctl(aiMib, ELEMENTS(aiMib), &cCpus, &cb, NULL, 0);
59 if (rc != -1 && cCpus >= 1)
60 return cCpus;
61#endif
62 return 1;
63}
64
65
66/**
67 * Gets the active logical processor mask.
68 *
69 * @returns Active logical processor mask. (bit 0 == logical cpu 0)
70 */
71RTR3DECL(uint64_t) RTSystemProcessorGetActiveMask(void)
72{
73 int cCpus = RTSystemProcessorGetCount();
74 return ((uint64_t)1 << cCpus) - 1;
75}
76
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