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
649f40ae
Commit
649f40ae
authored
Sep 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attempt to fix MacOS build
parent
1794ae7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/vlc_threads_funcs.h
include/vlc_threads_funcs.h
+1
-1
src/misc/threads.c
src/misc/threads.c
+1
-1
No files found.
include/vlc_threads_funcs.h
View file @
649f40ae
...
...
@@ -507,7 +507,7 @@ static inline int __vlc_cond_wait( const char * psz_file, int i_line,
/* In debug mode, timeout */
struct
timespec
timeout
;
# if
(_POSIX_CLOCK_MONOTONIC - 0
>= 0)
# if
defined (_POSIX_CLOCK_MONOTONIC) && (_POSIX_CLOCK_MONOTONIC
>= 0)
if
(
clock_gettime
(
CLOCK_MONOTONIC
,
&
timeout
)
)
# endif
clock_gettime
(
CLOCK_REALTIME
,
&
timeout
);
...
...
src/misc/threads.c
View file @
649f40ae
...
...
@@ -464,7 +464,7 @@ int __vlc_cond_init( vlc_object_t *p_this, vlc_cond_t *p_condvar )
if
(
ret
)
return
ret
;
# if defined (
HAVE_CLOCK_NANOSLEEP) && (_POSIX_CLOCK_MONOTONIC - 0
>= 0)
# if defined (
_POSIX_CLOCK_MONOTONIC) && (_POSIX_CLOCK_MONOTONIC
>= 0)
/* This must be the same clock as the one in mtime.c */
pthread_condattr_setclock
(
&
attr
,
CLOCK_MONOTONIC
);
# endif
...
...
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