Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
568b8662
Commit
568b8662
authored
Aug 08, 2010
by
Brad Smith
Committed by
Jean-Baptiste Kempf
Aug 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for detecting the number of CPUs with OpenBSD.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
fd294394
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
src/misc/cpu.c
src/misc/cpu.c
+8
-1
No files found.
src/misc/cpu.c
View file @
568b8662
...
...
@@ -49,7 +49,7 @@
#include <sys/sysctl.h>
#endif
#if defined(__OpenBSD__)
&& defined(__powerpc__)
#if defined(__OpenBSD__)
#include <sys/param.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
...
...
@@ -368,6 +368,13 @@ unsigned vlc_GetCPUCount(void)
if
(
sysctlbyname
(
"hw.ncpu"
,
&
count
,
&
size
,
NULL
,
0
))
return
1
;
/* Failure */
return
count
;
#elif defined(__OpenBSD__)
int
selectors
[
2
]
=
{
CTL_HW
,
HW_NCPU
};
int
count
;
size_t
size
=
sizeof
(
count
)
;
if
(
sysctl
(
selectors
,
2
,
&
count
,
&
size
,
NULL
,
0
))
return
1
;
/* Failure */
return
count
;
#elif defined(__SunOS)
unsigned
count
=
0
;
int
type
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment