Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
benchmark
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
benchmark
Commits
a9704c26
Unverified
Commit
a9704c26
authored
Oct 29, 2020
by
Abhina Sree
Committed by
GitHub
Oct 29, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nanosleep workaround for z/OS in sleep.cc (#1067)
* z/OS does not support nanosleep, add workaround to use sleep() and usleep() instead * change unsigned to int, and fix while loop
parent
dce3322a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
CONTRIBUTORS
CONTRIBUTORS
+1
-0
sleep.cc
src/sleep.cc
+16
-0
No files found.
CONTRIBUTORS
View file @
a9704c26
...
...
@@ -22,6 +22,7 @@
#
# Please keep the list sorted.
Abhina Sreeskantharajan <abhina.sreeskantharajan@ibm.com>
Albert Pretorius <pretoalb@gmail.com>
Alex Steele <steelal123@gmail.com>
Andriy Berestovskyy <berestovskyy@gmail.com>
...
...
src/sleep.cc
View file @
a9704c26
...
...
@@ -24,6 +24,10 @@
#include <windows.h>
#endif
#ifdef BENCHMARK_OS_ZOS
#include <unistd.h>
#endif
namespace
benchmark
{
#ifdef BENCHMARK_OS_WINDOWS
// Window's Sleep takes milliseconds argument.
...
...
@@ -33,11 +37,23 @@ void SleepForSeconds(double seconds) {
}
#else // BENCHMARK_OS_WINDOWS
void
SleepForMicroseconds
(
int
microseconds
)
{
#ifdef BENCHMARK_OS_ZOS
// z/OS does not support nanosleep. Instead call sleep() and then usleep() to
// sleep for the remaining microseconds because usleep() will fail if its
// argument is greater than 1000000.
div_t
sleepTime
=
div
(
microseconds
,
kNumMicrosPerSecond
);
int
seconds
=
sleepTime
.
quot
;
while
(
seconds
!=
0
)
seconds
=
sleep
(
seconds
);
while
(
usleep
(
sleepTime
.
rem
)
==
-
1
&&
errno
==
EINTR
)
;
#else
struct
timespec
sleep_time
;
sleep_time
.
tv_sec
=
microseconds
/
kNumMicrosPerSecond
;
sleep_time
.
tv_nsec
=
(
microseconds
%
kNumMicrosPerSecond
)
*
kNumNanosPerMicro
;
while
(
nanosleep
(
&
sleep_time
,
&
sleep_time
)
!=
0
&&
errno
==
EINTR
)
;
// Ignore signals and wait for the full interval to elapse.
#endif
}
void
SleepForMilliseconds
(
int
milliseconds
)
{
...
...
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