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
atomic-dbg has a PIPE_BUF-sized buffer which gets allocated on the stack. This is enough to quickly overflow stacks, especially SIGSTKSZ-sized stacks for signal handlers.
Perhaps atomic-dbg should use an mmaped buffer so that it doesn't use so much stack space.
The text was updated successfully, but these errors were encountered:
atomic-dbg has a
PIPE_BUF
-sized buffer which gets allocated on the stack. This is enough to quickly overflow stacks, especiallySIGSTKSZ
-sized stacks for signal handlers.Perhaps
atomic-dbg
should use anmmap
ed buffer so that it doesn't use so much stack space.The text was updated successfully, but these errors were encountered: