Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b22e2a9f
Commit
b22e2a9f
authored
Sep 06, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Detect unsupported sleep delay at compile time
(Currently, <1ms on Linux, and <0 on others)
parent
116ca8af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
include/vlc_mtime.h
include/vlc_mtime.h
+23
-1
No files found.
include/vlc_mtime.h
View file @
b22e2a9f
...
...
@@ -69,6 +69,23 @@ VLC_EXPORT( void, msleep, ( mtime_t delay ) );
VLC_EXPORT
(
char
*
,
secstotimestr
,
(
char
*
psz_buffer
,
int
secs
)
);
#ifdef __GNUC__
# ifdef __linux__
# define VLC_HARD_MIN_SLEEP 1000
/* Linux has 100, 250, 300 or 1000Hz */
# else
# define VLC_HARD_MIN_SLEEP 0
# endif
#define VLC_SOFT_MIN_SLEEP 29000000
static
__attribute__
((
unused
))
__attribute__
((
noinline
))
__attribute__
((
error
(
"sorry, cannot sleep for such short a time"
)))
void
impossible_msleep
(
mtime_t
delay
)
{
(
void
)
delay
;
msleep
(
VLC_HARD_MIN_SLEEP
);
}
static
__attribute__
((
unused
))
__attribute__
((
noinline
))
...
...
@@ -77,8 +94,13 @@ void bad_msleep( mtime_t delay )
{
msleep
(
delay
);
}
# define msleep( d ) \
((__builtin_constant_p(d) && (d < 29000000)) ? bad_msleep(d) : msleep(d))
(__builtin_constant_p(d < VLC_HARD_MIN_SLEEP) \
? impossible_msleep(d) \
: (__builtin_constant_p(d < VLC_SOFT_MIN_SLEEP) \
? bad_msleep(d) \
: msleep(d)))
#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