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
35664fc8
Commit
35664fc8
authored
Jul 13, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
timer: speed up test case
parent
81705747
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
src/test/timer.c
src/test/timer.c
+7
-6
No files found.
src/test/timer.c
View file @
35664fc8
...
...
@@ -22,13 +22,14 @@
# include "config.h"
#endif
#include <vlc_common.h>
#include <stdio.h>
#include <stdlib.h>
#undef NDEBUG
#include <assert.h>
#include <vlc_common.h>
#undef msleep
struct
timer_data
{
vlc_timer_t
timer
;
...
...
@@ -58,8 +59,8 @@ int main (void)
assert
(
val
==
0
);
/* Relative timer */
vlc_timer_schedule
(
data
.
timer
,
false
,
1
,
CLOCK_FREQ
/
10
);
msleep
(
CLOCK_FREQ
);
vlc_timer_schedule
(
data
.
timer
,
false
,
1
,
CLOCK_FREQ
/
10
0
);
msleep
(
CLOCK_FREQ
/
10
);
vlc_mutex_lock
(
&
data
.
lock
);
data
.
count
+=
vlc_timer_getoverrun
(
data
.
timer
);
printf
(
"Count = %u
\n
"
,
data
.
count
);
...
...
@@ -71,8 +72,8 @@ int main (void)
/* Absolute timer */
mtime_t
now
=
mdate
();
vlc_timer_schedule
(
data
.
timer
,
true
,
now
,
CLOCK_FREQ
/
10
);
msleep
(
CLOCK_FREQ
);
vlc_timer_schedule
(
data
.
timer
,
true
,
now
,
CLOCK_FREQ
/
10
0
);
msleep
(
CLOCK_FREQ
/
10
);
vlc_mutex_lock
(
&
data
.
lock
);
data
.
count
+=
vlc_timer_getoverrun
(
data
.
timer
);
printf
(
"Count = %u
\n
"
,
data
.
count
);
...
...
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