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
Some logging, like that in rtdl, should be controlled by environment variables (so that we don't have to recompile the program to enable it).
#598 implements this for malloc et al., but we ought to do this in a way that is safe w.r.t concurrent modifications of the environment. For example, we could have a global libcConfig struct that we initialise in ld.so from the environment at program startup.
The text was updated successfully, but these errors were encountered:
Some logging, like that in
rtdl
, should be controlled by environment variables (so that we don't have to recompile the program to enable it).#598 implements this for
malloc
et al., but we ought to do this in a way that is safe w.r.t concurrent modifications of the environment. For example, we could have a globallibcConfig
struct that we initialise inld.so
from the environment at program startup.The text was updated successfully, but these errors were encountered: