summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-06-03 01:43:07 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-06-03 12:44:07 +0200
commit3467aa462a47548f7db76ef641bf950e1420449f (patch)
tree6e5b5744c50db45344d3bcaac149a33cc83ec174 /pkgs
parent4564a0e5e223e647a504d57cd364778e1930ccb1 (diff)
downloadnixlib-3467aa462a47548f7db76ef641bf950e1420449f.tar
nixlib-3467aa462a47548f7db76ef641bf950e1420449f.tar.gz
nixlib-3467aa462a47548f7db76ef641bf950e1420449f.tar.bz2
nixlib-3467aa462a47548f7db76ef641bf950e1420449f.tar.lz
nixlib-3467aa462a47548f7db76ef641bf950e1420449f.tar.xz
nixlib-3467aa462a47548f7db76ef641bf950e1420449f.tar.zst
nixlib-3467aa462a47548f7db76ef641bf950e1420449f.zip
stress-ng 0.04.04 -> 0.04.05
Changes:
- Ensure maximum sizes don't exceed 4GB-1 for 32 bit systems
- stress-crypt: only use re-entrant crypt_r on Linux for now
- Add perf reference in manual, update date
- stress-vm-rw: zero msg_wr just to be totally safe
- stress-crypt: use reentrant crypt_r to avoid any memory leaks
- stress-zombie: free items on list head on exit
- stress-lockf: free items on list head on exit
- stress-wcstr: fix incorrect wide string size
- Add int8, int16, int32 and int64 versions of mwc*()
- Increase various stressors upper memory limits
- Make --aggressive force more CPU migrations and context switches
- Fix comment for stress_get_ticks_per_second
- perf: enable inherit flag to trace children
- Add the new --getrandom stressor
- Fix sigq options, missing because not using STRESS_SIGQUEUE
- Fix help -h option, was --h, should be -h
- avoid builtins when libs shall be tested
- add stressor for wide character sting operations
- fix string names
- avoid compiler error in stress-vector
- fix EPOLL build
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/system/stress-ng/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
index ebe6306120e6..2a0b2816ba70 100644
--- a/pkgs/tools/system/stress-ng/default.nix
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, attr }:
 
-let version = "0.04.04"; in
+let version = "0.04.05"; in
 stdenv.mkDerivation rec {
   name = "stress-ng-${version}";
 
   src = fetchurl {
-    sha256 = "1rq78s4xrylm63xygakrvjg5g774qmm968p0v69x2c795dv3s8di";
+    sha256 = "1xj3rrcvpjl3sgvl22m0bdrkscxxnipzh4s1ivmrifw7lq2zq1kg";
     url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
   };