diff options
author | Rickard Green <[email protected]> | 2017-09-01 17:17:34 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-09-04 16:33:02 +0200 |
commit | 5a45d2917cd14bf5eab690453e8a191549de4c2c (patch) | |
tree | dd2a9aae87aa300d6fd8b1e1b0b15de393999dc1 /erts/emulator/sys/unix | |
parent | a230f26086b3db9097f06d4bb91fb3b2e9379c77 (diff) | |
download | otp-5a45d2917cd14bf5eab690453e8a191549de4c2c.tar.gz otp-5a45d2917cd14bf5eab690453e8a191549de4c2c.tar.bz2 otp-5a45d2917cd14bf5eab690453e8a191549de4c2c.zip |
Bug fixes of statistics(wall_clock) and statistics(runtime)
Diffstat (limited to 'erts/emulator/sys/unix')
-rw-r--r-- | erts/emulator/sys/unix/erl_unix_sys.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/erts/emulator/sys/unix/erl_unix_sys.h b/erts/emulator/sys/unix/erl_unix_sys.h index 22059d21d5..b83837a7d2 100644 --- a/erts/emulator/sys/unix/erl_unix_sys.h +++ b/erts/emulator/sys/unix/erl_unix_sys.h @@ -86,6 +86,10 @@ #include <sys/times.h> +#ifdef HAVE_SYS_RESOURCE_H +# include <sys/resource.h> +#endif + #ifdef HAVE_IEEEFP_H #include <ieeefp.h> #endif |