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
To increase thread safety, the rrd files should be opened with O_CLOEXEC. Else, the fd might leak to programs which are started by execv() in other threads.
To increase thread safety, the rrd files should be opened with
O_CLOEXEC
. Else, the fd might leak to programs which are started byexecv()
in other threads.Atm, only
is used which is prone for races
The text was updated successfully, but these errors were encountered: