diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-08-15 17:56:51 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2020-08-18 14:56:24 -0700 |
commit | 69239158c9e14707510f3d7f7fea2d8ff4a8a3a0 (patch) | |
tree | b2f668bb7bdbef8de93cd7a775b38c5509696cdf /utils/stress | |
parent | c8fc7c3d76c1f8a5a589a3080b99dfa167ea66eb (diff) |
stress: replace usleep with nanosleep
The former is deprecated.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'utils/stress')
-rw-r--r-- | utils/stress/Makefile | 2 | ||||
-rw-r--r-- | utils/stress/patches/010-usleep.patch | 46 |
2 files changed, 47 insertions, 1 deletions
diff --git a/utils/stress/Makefile b/utils/stress/Makefile index b7712e4db..3a66817dd 100644 --- a/utils/stress/Makefile +++ b/utils/stress/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=stress PKG_VERSION:=1.0.4 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://fossies.org/linux/privat diff --git a/utils/stress/patches/010-usleep.patch b/utils/stress/patches/010-usleep.patch new file mode 100644 index 000000000..69467264c --- /dev/null +++ b/utils/stress/patches/010-usleep.patch @@ -0,0 +1,46 @@ +--- a/src/stress.c ++++ b/src/stress.c +@@ -262,6 +262,7 @@ main (int argc, char **argv) + + /* Calculate the backoff value so we get good fork throughput. */ + backoff = do_backoff * forks; ++ struct timespec b = {backoff / 1000000, (backoff % 1000000) * 1000}; + dbg (stdout, "using backoff sleep of %llius\n", backoff); + + /* If we are supposed to respect a timeout, calculate it. */ +@@ -296,7 +297,7 @@ main (int argc, char **argv) + { + case 0: /* child */ + alarm (timeout); +- usleep (backoff); ++ nanosleep(&b, NULL); + if (do_dryrun) + exit (0); + exit (hogcpu ()); +@@ -317,7 +318,7 @@ main (int argc, char **argv) + { + case 0: /* child */ + alarm (timeout); +- usleep (backoff); ++ nanosleep(&b,&b); + if (do_dryrun) + exit (0); + exit (hogio ()); +@@ -337,7 +338,7 @@ main (int argc, char **argv) + { + case 0: /* child */ + alarm (timeout); +- usleep (backoff); ++ nanosleep(&b, &b); + if (do_dryrun) + exit (0); + exit (hogvm +@@ -358,7 +359,7 @@ main (int argc, char **argv) + { + case 0: /* child */ + alarm (timeout); +- usleep (backoff); ++ nanosleep(&b, &b); + if (do_dryrun) + exit (0); + exit (hoghdd (do_hdd_bytes)); |