diff options
author | Steve Vinoski <[email protected]> | 2014-01-15 10:13:11 -0500 |
---|---|---|
committer | Steve Vinoski <[email protected]> | 2014-01-15 13:50:24 -0500 |
commit | 8ff33cff02d01b2b4f20769cbd77c5ef23b01631 (patch) | |
tree | 39588f228aecef37f261b3a0d634fdd1549be6fb /erts/emulator/beam/erl_async.c | |
parent | af583b6a455d64153dc4c92d8f250c2340418e9f (diff) | |
download | otp-8ff33cff02d01b2b4f20769cbd77c5ef23b01631.tar.gz otp-8ff33cff02d01b2b4f20769cbd77c5ef23b01631.tar.bz2 otp-8ff33cff02d01b2b4f20769cbd77c5ef23b01631.zip |
remove deprecated driver_async_cancel function
Some time ago the driver_async_cancel function was deprecated and slated
for removal in R17. This commit removes the function along with its
associated tests and documentation, sets the
ERL_DRV_EXTENDED_MAJOR_VERSION to 3 and ERL_DRV_EXTENDED_MINOR_VERSION to
0, and modifies the sys_info_base_drv and sys_info_prev_drv tests in the
driver test suite to check version 3.0 instead of 2.0.
Diffstat (limited to 'erts/emulator/beam/erl_async.c')
-rw-r--r-- | erts/emulator/beam/erl_async.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/erts/emulator/beam/erl_async.c b/erts/emulator/beam/erl_async.c index e6d72f569b..f0cec1c53c 100644 --- a/erts/emulator/beam/erl_async.c +++ b/erts/emulator/beam/erl_async.c @@ -602,7 +602,7 @@ unsigned int driver_async_port_key(ErlDrvPort port) ** return values: ** 0 completed ** -1 error -** N handle value (used with async_cancel) +** N handle value ** arguments: ** ix driver index ** key pointer to secedule queue (NULL means round robin) @@ -687,23 +687,3 @@ long driver_async(ErlDrvPort ix, unsigned int* key, return id; } - -int driver_async_cancel(unsigned int id) -{ - /* - * Not supported anymore. Always fail (which is backward - * compatible). - * - * This functionality could be implemented again. However, - * it is (and always has been) completely useless since - * it doesn't give you any guarantees whatsoever. The user - * needs to (and always have had to) synchronize in his/her - * own code in order to get any guarantees. - */ - return 0; -} - - - - - |