According to erl_driver documentation for driver_async_port_key
function,
Before OTP-R16, the actual port id could be used as a key with proper casting, but after the rewrite of the port subsystem, this is no longer the case. With this function, you can achieve the same distribution based on port id's as before OTP-R16.
What is this proper casting?
The
ErlDrvPort
type is a typedef of a pointer to a struct. To obtain anunsigned int
async key type in older driver applications, you need to convert this pointer type tounsigned int
. One way to achieve this is to cast it through the C99uintptr_t
type, which is guaranteed to be large enough to hold a pointer value:You can write a portable function to return an async key using driver API versioning information available in
erl_driver.h
. Thedriver_async_port_key
function was introduced in driver API version 2.2, so we can calldriver_async_port_key
when using version 2.2 or newer, or fall back to the casting approach for older versions: