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
The CLOEXEC flag is currently set for the Fuchsia platform, e.g. in accept.
Even though the flag is supported on Fuchsia, the flag doesn't do anything because Fuchsia doesn't really have exec as a concept. As a result, it would seem wise to pretend that this flag doesn't exist on Fuchsia.
The text was updated successfully, but these errors were encountered:
Everything @ttttcrngyblflpp says is correct. The flag is supported - it can be set and queried - but doesn't do anything because exec doesn't exist in Fuchsia by design.
Whether or not this justifies conditional logic is less clear to me.
There's an issue tracking this in Fuchsia, which may be useful to cite when making changes in this area.
The
CLOEXEC
flag is currently set for the Fuchsia platform, e.g. inaccept
.Even though the flag is supported on Fuchsia, the flag doesn't do anything because Fuchsia doesn't really have
exec
as a concept. As a result, it would seem wise to pretend that this flag doesn't exist on Fuchsia.The text was updated successfully, but these errors were encountered: