Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
456
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
66a76416
Commit
66a76416
authored
17 years ago
by
Rafaël Carré
Browse files
Options
Downloads
Patches
Plain Diff
fix compile when spinlocks aren't available
parent
cc6e3d03
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vlc_threads_funcs.h
+1
-1
1 addition, 1 deletion
include/vlc_threads_funcs.h
with
1 addition
and
1 deletion
include/vlc_threads_funcs.h
+
1
−
1
View file @
66a76416
...
...
@@ -626,7 +626,7 @@ typedef vlc_mutex_t vlc_spinlock_t;
static
inline
int
vlc_spin_init
(
vlc_spinlock_t
*
spin
)
{
return
__vlc_mutex_init
(
NULL
,
spin
);
return
__vlc_mutex_init
(
spin
);
}
# define vlc_spin_lock vlc_mutex_lock
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment