Files
renderdoc/renderdoc/renderdoc.version
T
baldurk 287da369fc Fix handling of child processes on linux
* We need to ensure we remodify LD_LIBRARY_PATH and LD_PRELOAD before fork/exec
  if the application (say bash running a script) has overwritten them. We also
  don't want these to be accidentally inherited into children if we're not
  hooking children - the same for the vulkan env var, which can't be unset
  immediately on process injection like the others because it needs to hang
  around indefinitely.
2021-03-22 18:37:09 +00:00

20 lines
411 B
Plaintext

{
global:
_init;
_fini;
gl[A-Z]*;
egl[A-Z]*;
vk_icd*;
dlopen;
dlsym;
fork;
execle;
execve;
execvpe;
_exit;
RENDERDOC_*;
VK_LAYER_RENDERDOC_*;
local:
*;
};