diff options
author | John Högberg <[email protected]> | 2017-11-15 13:03:29 +0100 |
---|---|---|
committer | John Högberg <[email protected]> | 2017-11-15 14:12:02 +0100 |
commit | afd92e272aa6fa6836e6e5e48e8a68ba519202e1 (patch) | |
tree | f6476e5d54d002a740aee6c99fb163447114901c /erts/emulator/beam | |
parent | 84f29ab803e8f36ef058a47f4c2b224f4dd58220 (diff) | |
download | otp-afd92e272aa6fa6836e6e5e48e8a68ba519202e1.tar.gz otp-afd92e272aa6fa6836e6e5e48e8a68ba519202e1.tar.bz2 otp-afd92e272aa6fa6836e6e5e48e8a68ba519202e1.zip |
Fix NIF API version for enif_ioq
Diffstat (limited to 'erts/emulator/beam')
-rw-r--r-- | erts/emulator/beam/erl_nif.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_nif.h b/erts/emulator/beam/erl_nif.h index d195721054..7fb447e4a8 100644 --- a/erts/emulator/beam/erl_nif.h +++ b/erts/emulator/beam/erl_nif.h @@ -50,10 +50,11 @@ ** 2.9: 18.2 enif_getenv ** 2.10: Time API ** 2.11: 19.0 enif_snprintf -** 2.12: 20.0 add enif_queue +** 2.12: 20.0 add enif_select, enif_open_resource_type_x +** 2.13: 20.1 add enif_ioq */ #define ERL_NIF_MAJOR_VERSION 2 -#define ERL_NIF_MINOR_VERSION 12 +#define ERL_NIF_MINOR_VERSION 13 /* * The emulator will refuse to load a nif-lib with a major version |