You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c_src/h2leveldb_impl_drv.cc:235:1:
error: missing field 'emergency_close' initializer [-Werror,-Wmissing-field-initializers]
The emergency_close field was introduced to Erlang/OTP 17.5 by this commit: erlang/otp@d373dc4
erts: Extend driver interface with emergency_close
The intention of this callback is to close all sockets associated to a port. It is closed only on crashdumps.
This will currently only be used for the epmd port.
The text was updated successfully, but these errors were encountered:
Just for now, I simply added the new field emergency_close to ErlDrvEntry so that it does compile under Erlang/OTP 17.5. However, it doesn't compile under R16 anymore. I'll revisit this later to make it work under both 17.x and R16.
The
emergency_close
field was introduced to Erlang/OTP 17.5 by this commit:erlang/otp@d373dc4
The text was updated successfully, but these errors were encountered: