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
f210514c
Commit
f210514c
authored
Aug 06, 2010
by
Brad Smith
Committed by
Jean-Baptiste Kempf
Aug 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add AltiVec detection for OpenBSD/powerpc.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
725cf4eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
src/misc/cpu.c
src/misc/cpu.c
+11
-1
No files found.
src/misc/cpu.c
View file @
f210514c
...
...
@@ -49,6 +49,12 @@
#include <sys/sysctl.h>
#endif
#if defined(__OpenBSD__) && defined(__powerpc__)
#include <sys/param.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
#endif
#if defined(__SunOS)
#include <unistd.h>
#include <sys/types.h>
...
...
@@ -266,8 +272,12 @@ out:
#elif defined( __powerpc__ ) || defined( __ppc__ ) || defined( __powerpc64__ ) \
|| defined( __ppc64__ )
# if defined(__APPLE__)
# if defined(__APPLE__) || defined(__OpenBSD__)
# if defined(__OpenBSD__)
int
selectors
[
2
]
=
{
CTL_MACHDEP
,
CPU_ALTIVEC
};
# else
int
selectors
[
2
]
=
{
CTL_HW
,
HW_VECTORUNIT
};
# endif
int
i_has_altivec
=
0
;
size_t
i_length
=
sizeof
(
i_has_altivec
);
int
i_error
=
sysctl
(
selectors
,
2
,
&
i_has_altivec
,
&
i_length
,
NULL
,
0
);
...
...
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