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
Apparently the two clone flags CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND are both larger than an i32, which results in them quietly being truncated to 0 over here (or I'm misunderstanding something).
As far as I understand clone() cannot support these, but clone3 should be able to.
In any way I'd argue the two flags being 0 is a bug and it would be better not having the flags then having them be wrong.
The text was updated successfully, but these errors were encountered:
Apparently the two clone flags
CLONE_INTO_CGROUP
andCLONE_CLEAR_SIGHAND
are both larger than an i32, which results in them quietly being truncated to 0 over here (or I'm misunderstanding something).linux/sched.h
defines them as follows:As far as I understand
clone()
cannot support these, butclone3
should be able to.In any way I'd argue the two flags being 0 is a bug and it would be better not having the flags then having them be wrong.
The text was updated successfully, but these errors were encountered: