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
c6e4a4b3
Commit
c6e4a4b3
authored
May 17, 2002
by
Loïc Minier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* removed usage of usleep (not thread safe) (by Meuuh)
parent
805a2fd1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
11 deletions
+1
-11
src/misc/mtime.c
src/misc/mtime.c
+1
-11
No files found.
src/misc/mtime.c
View file @
c6e4a4b3
...
...
@@ -3,7 +3,7 @@
* Functions are prototyped in mtime.h.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: mtime.c,v 1.2
8 2002/02/25 23:59:07 sam
Exp $
* $Id: mtime.c,v 1.2
9 2002/05/17 15:14:47 lool
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
*
...
...
@@ -141,11 +141,7 @@ void mwait( mtime_t date )
#else
# ifdef HAVE_USLEEP
struct
timeval
tv_date
;
# else
struct
timeval
tv_date
,
tv_delay
;
# endif
mtime_t
delay
;
/* delay in msec, signed to detect errors */
/* see mdate() about gettimeofday() possible errors */
...
...
@@ -169,9 +165,6 @@ void mwait( mtime_t date )
# elif defined( ST_INIT_IN_ST_H )
st_usleep
(
delay
);
# elif defined( HAVE_USLEEP )
usleep
(
delay
);
# else
tv_delay
.
tv_sec
=
delay
/
1000000
;
tv_delay
.
tv_usec
=
delay
%
1000000
;
...
...
@@ -199,9 +192,6 @@ void msleep( mtime_t delay )
#elif defined( ST_INIT_IN_ST_H )
st_usleep
(
delay
);
#elif defined( HAVE_USLEEP )
usleep
(
delay
);
#elif defined( WIN32 )
Sleep
(
(
int
)
(
delay
/
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