The libuv documentation has an example that specifies flags of the stdio field to ignore to UV_IGNORE to skip over it, however this extension starts in uv_spawn with 0 and simply increments the key (ignoring the given array indexes).
Would the only way to not use a stdio field be by explicitely mapping to /dev/null (which is what libuv does behind the scene)?
The libuv documentation has an example that specifies
flags
of the stdio field to ignore toUV_IGNORE
to skip over it, however this extension starts inuv_spawn
with 0 and simply increments the key (ignoring the given array indexes).Would the only way to not use a stdio field be by explicitely mapping to
/dev/null
(which is what libuv does behind the scene)?