OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 University of Szeged. All rights reserved. | 2 * Copyright (C) 2012 University of Szeged. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 #include "config.h" | 26 #include "config.h" |
27 #include "NumberOfCores.h" | 27 #include "NumberOfCores.h" |
28 | 28 |
29 #if OS(DARWIN) || OS(OPENBSD) || OS(NETBSD) || OS(FREEBSD) | 29 #if OS(DARWIN) || OS(OPENBSD) || OS(NETBSD) || OS(FREEBSD) |
30 #include <sys/param.h> | 30 #include <sys/param.h> |
31 // sys/types.h must come before sys/sysctl.h because the latter uses | 31 // sys/types.h must come before sys/sysctl.h because the latter uses |
32 // data types defined in the former. See sysctl(3) and style(9). | 32 // data types defined in the former. See sysctl(3) and style(9). |
33 #include <sys/types.h> | 33 #include <sys/types.h> |
34 #include <sys/sysctl.h> | 34 #include <sys/sysctl.h> |
35 #elif OS(LINUX) || OS(AIX) || OS(SOLARIS) | 35 #elif OS(LINUX) || OS(SOLARIS) |
36 #include <unistd.h> | 36 #include <unistd.h> |
37 #elif OS(WINDOWS) | 37 #elif OS(WINDOWS) |
38 #include <wtf/UnusedParam.h> | 38 #include <wtf/UnusedParam.h> |
39 #if OS(WINDOWS) | 39 #if OS(WINDOWS) |
40 #include <windows.h> | 40 #include <windows.h> |
41 #endif | 41 #endif |
42 #endif | 42 #endif |
43 | 43 |
44 namespace WTF { | 44 namespace WTF { |
45 | 45 |
46 int numberOfProcessorCores() | 46 int numberOfProcessorCores() |
47 { | 47 { |
48 const int defaultIfUnavailable = 1; | 48 const int defaultIfUnavailable = 1; |
49 static int s_numberOfCores = -1; | 49 static int s_numberOfCores = -1; |
50 | 50 |
51 if (s_numberOfCores > 0) | 51 if (s_numberOfCores > 0) |
52 return s_numberOfCores; | 52 return s_numberOfCores; |
53 | 53 |
54 #if OS(DARWIN) || OS(OPENBSD) || OS(NETBSD) || OS(FREEBSD) | 54 #if OS(DARWIN) || OS(OPENBSD) || OS(NETBSD) || OS(FREEBSD) |
55 unsigned result; | 55 unsigned result; |
56 size_t length = sizeof(result); | 56 size_t length = sizeof(result); |
57 int name[] = { | 57 int name[] = { |
58 CTL_HW, | 58 CTL_HW, |
59 HW_NCPU | 59 HW_NCPU |
60 }; | 60 }; |
61 int sysctlResult = sysctl(name, sizeof(name) / sizeof(int), &result, &length
, 0, 0); | 61 int sysctlResult = sysctl(name, sizeof(name) / sizeof(int), &result, &length
, 0, 0); |
62 | 62 |
63 s_numberOfCores = sysctlResult < 0 ? defaultIfUnavailable : result; | 63 s_numberOfCores = sysctlResult < 0 ? defaultIfUnavailable : result; |
64 #elif OS(LINUX) || OS(AIX) || OS(SOLARIS) | 64 #elif OS(LINUX) || OS(SOLARIS) |
65 long sysconfResult = sysconf(_SC_NPROCESSORS_ONLN); | 65 long sysconfResult = sysconf(_SC_NPROCESSORS_ONLN); |
66 | 66 |
67 s_numberOfCores = sysconfResult < 0 ? defaultIfUnavailable : static_cast<int
>(sysconfResult); | 67 s_numberOfCores = sysconfResult < 0 ? defaultIfUnavailable : static_cast<int
>(sysconfResult); |
68 #elif OS(WINDOWS) | 68 #elif OS(WINDOWS) |
69 UNUSED_PARAM(defaultIfUnavailable); | 69 UNUSED_PARAM(defaultIfUnavailable); |
70 SYSTEM_INFO sysInfo; | 70 SYSTEM_INFO sysInfo; |
71 GetSystemInfo(&sysInfo); | 71 GetSystemInfo(&sysInfo); |
72 | 72 |
73 s_numberOfCores = sysInfo.dwNumberOfProcessors; | 73 s_numberOfCores = sysInfo.dwNumberOfProcessors; |
74 #else | 74 #else |
75 s_numberOfCores = defaultIfUnavailable; | 75 s_numberOfCores = defaultIfUnavailable; |
76 #endif | 76 #endif |
77 return s_numberOfCores; | 77 return s_numberOfCores; |
78 } | 78 } |
79 | 79 |
80 } | 80 } |
OLD | NEW |