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
d06c5b37
Commit
d06c5b37
authored
Sep 07, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the run-time tick warning - too many false positives.
This reverts commit
7cc631ac
.
parent
5fe3825b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
21 deletions
+0
-21
src/misc/mtime.c
src/misc/mtime.c
+0
-21
No files found.
src/misc/mtime.c
View file @
d06c5b37
...
...
@@ -373,27 +373,6 @@ void mwait( mtime_t date )
*/
void
msleep
(
mtime_t
delay
)
{
#ifndef NDEBUG
# if defined (__linux__)
/* We assume that proper use of msleep() will not use a constant period...
* Media synchronization is likely to use mwait() with at least slight
* sleep length variation at microsecond precision. Network protocols
* normally have exponential backoffs, or long delays. */
static
__thread
unsigned
tick_period
=
0
;
static
__thread
unsigned
tick_frequency
=
0
;
if
(
tick_period
!=
delay
)
tick_frequency
=
0
;
tick_frequency
++
;
tick_period
=
delay
;
if
(
delay
<
(
29
*
CLOCK_FREQ
)
&&
tick_frequency
==
20
)
{
fprintf
(
stderr
,
"Likely bogus delay(%"
PRIu64
"µs) "
,
delay
);
vlc_backtrace
();
}
//fprintf (stderr, "%u, %u\n", tick_period, tick_frequency);
# endif
#endif
#if defined( HAVE_CLOCK_NANOSLEEP )
lldiv_t
d
=
lldiv
(
delay
,
1000000
);
struct
timespec
ts
=
{
d
.
quot
,
d
.
rem
*
1000
};
...
...
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