Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
2a817cdb
Commit
2a817cdb
authored
Dec 29, 2009
by
Martin T. Sandsmark
Committed by
Rémi Denis-Courmont
Dec 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use _exit() instead of exit() when checking CPU capabilities
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
fce620e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/misc/cpu.c
src/misc/cpu.c
+2
-2
No files found.
src/misc/cpu.c
View file @
2a817cdb
...
...
@@ -119,7 +119,7 @@ uint32_t CPUCapabilities( void )
if( pid == 0 ) \
{ \
__asm__ __volatile__ ( code : : ); \
exit(0); \
_
exit(0); \
} \
if( check_OS_capability((name), pid )) \
i_capabilities |= (flag); \
...
...
@@ -273,7 +273,7 @@ out:
"vand %%v0, %%v0, %%v0"
:
:
"r"
(
-
1
));
exit
(
0
);
_
exit
(
0
);
}
if
(
check_OS_capability
(
"Altivec"
,
pid
)
)
...
...
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