Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
abb46dc5
Commit
abb46dc5
authored
Mar 02, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix handling of EINTR in sleeping functions.
This will not change your life.
parent
898c9279
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
16 deletions
+22
-16
src/misc/mtime.c
src/misc/mtime.c
+22
-16
No files found.
src/misc/mtime.c
View file @
abb46dc5
...
...
@@ -128,6 +128,9 @@ static inline unsigned mprec( void )
static
unsigned
prec
=
0
;
static
volatile
mtime_t
cached_time
=
0
;
#if (_POSIX_MONOTONIC_CLOCK - 0 < 0)
# define CLOCK_MONOTONIC CLOCK_REALTIME
#endif
/**
* Return high precision date
...
...
@@ -142,10 +145,8 @@ mtime_t mdate( void )
#if defined (HAVE_CLOCK_NANOSLEEP)
struct
timespec
ts
;
# if (_POSIX_MONOTONIC_CLOCK - 0 >= 0)
/* Try to use POSIX monotonic clock if available */
if
(
clock_gettime
(
CLOCK_MONOTONIC
,
&
ts
)
)
# endif
if
(
clock_gettime
(
CLOCK_MONOTONIC
,
&
ts
)
==
EINVAL
)
/* Run-time fallback to real-time clock (always available) */
(
void
)
clock_gettime
(
CLOCK_REALTIME
,
&
ts
);
...
...
@@ -262,10 +263,14 @@ void mwait( mtime_t date )
lldiv_t d = lldiv( date, 1000000 );
struct timespec ts = { d.quot, d.rem * 1000 };
# if (_POSIX_MONOTONIC_CLOCK - 0 >= 0)
if( clock_nanosleep( CLOCK_MONOTONIC, TIMER_ABSTIME, &ts, NULL ) )
# endif
clock_nanosleep
(
CLOCK_REALTIME
,
TIMER_ABSTIME
,
&
ts
,
NULL
);
int val;
while( ( val = clock_nanosleep( CLOCK_MONOTONIC, TIMER_ABSTIME, &ts,
NULL ) ) == EINTR );
if( val == EINVAL )
{
ts.tv_sec = d.quot; ts.tv_nsec = d.rem * 1000;
while( clock_nanosleep( CLOCK_REALTIME, 0, &ts, NULL ) == EINTR );
}
#else
mtime_t
delay
=
date
-
mdate
();
...
...
@@ -289,10 +294,13 @@ void msleep( mtime_t delay )
lldiv_t
d
=
lldiv
(
delay
,
1000000
);
struct
timespec
ts
=
{
d
.
quot
,
d
.
rem
*
1000
};
# if (_POSIX_MONOTONIC_CLOCK - 0 >= 0)
if
(
clock_nanosleep
(
CLOCK_MONOTONIC
,
0
,
&
ts
,
NULL
)
)
# endif
clock_nanosleep
(
CLOCK_REALTIME
,
0
,
&
ts
,
NULL
);
int
val
;
while
(
(
val
=
clock_nanosleep
(
CLOCK_MONOTONIC
,
0
,
&
ts
,
&
ts
)
)
==
EINTR
);
if
(
val
==
EINVAL
)
{
ts
.
tv_sec
=
d
.
quot
;
ts
.
tv_nsec
=
d
.
rem
*
1000
;
while
(
clock_nanosleep
(
CLOCK_REALTIME
,
0
,
&
ts
,
&
ts
)
==
EINTR
);
}
#elif defined( HAVE_KERNEL_OS_H )
snooze
(
delay
);
...
...
@@ -312,7 +320,7 @@ void msleep( mtime_t delay )
ts_delay
.
tv_sec
=
delay
/
1000000
;
ts_delay
.
tv_nsec
=
(
delay
%
1000000
)
*
1000
;
nanosleep
(
&
ts_delay
,
NULL
);
while
(
nanosleep
(
&
ts_delay
,
&
ts_delay
)
&&
(
errno
==
EINTR
)
);
#else
struct
timeval
tv_delay
;
...
...
@@ -320,10 +328,8 @@ void msleep( mtime_t delay )
tv_delay
.
tv_sec
=
delay
/
1000000
;
tv_delay
.
tv_usec
=
delay
%
1000000
;
/* select() return value should be tested, since several possible errors
* can occur. However, they should only happen in very particular occasions
* (i.e. when a signal is sent to the thread, or when memory is full), and
* can be ignored. */
/* If a signal is caught, you are screwed. Update your OS to nanosleep()
* or clock_nanosleep() if this is an issue. */
select
(
0
,
NULL
,
NULL
,
NULL
,
&
tv_delay
);
#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