diff options
author | Rickard Green <[email protected]> | 2014-08-26 17:26:31 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2014-09-25 16:42:20 +0200 |
commit | 6084a42a24fca52a5de2bc487c0cd2be46dcc21f (patch) | |
tree | 63fe33c074ccce7dd8bf51e846b9b778b81e4af5 /erts/emulator/sys/unix/sys.c | |
parent | 65e335e255cb76d979f605ed34700e4e02041139 (diff) | |
download | otp-6084a42a24fca52a5de2bc487c0cd2be46dcc21f.tar.gz otp-6084a42a24fca52a5de2bc487c0cd2be46dcc21f.tar.bz2 otp-6084a42a24fca52a5de2bc487c0cd2be46dcc21f.zip |
Introduce support for eager check I/O scheduling
Diffstat (limited to 'erts/emulator/sys/unix/sys.c')
-rw-r--r-- | erts/emulator/sys/unix/sys.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/sys/unix/sys.c b/erts/emulator/sys/unix/sys.c index 61f9f6a59a..ada62f71f9 100644 --- a/erts/emulator/sys/unix/sys.c +++ b/erts/emulator/sys/unix/sys.c @@ -277,7 +277,7 @@ struct { void (*check_io)(int); Uint (*size)(void); Eterm (*info)(void *); - int (*check_io_debug)(void); + int (*check_io_debug)(ErtsCheckIoDebugInfo *); } io_func = {0}; @@ -299,9 +299,9 @@ Eterm erts_check_io_info(void *p) } int -erts_check_io_debug(void) +erts_check_io_debug(ErtsCheckIoDebugInfo *ip) { - return (*io_func.check_io_debug)(); + return (*io_func.check_io_debug)(ip); } |