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
Subprocesses cloned without the CLONE_FILES flag being set will inherit a copy of the file descriptor table from their parent.
Currently, this is not taken care of when tracking open files. This can cause problems with multi-threaded program analysis.
Note: The fork syscall runs into the same problems.
The text was updated successfully, but these errors were encountered:
Subprocesses cloned without the
CLONE_FILES
flag being set will inherit a copy of the file descriptor table from their parent.Currently, this is not taken care of when tracking open files. This can cause problems with multi-threaded program analysis.
Note: The
fork
syscall runs into the same problems.The text was updated successfully, but these errors were encountered: