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
and it turns out that gnome's Util.spawn adds the DO_NOT_REAP_CHILD flag when starting a process (see here). Further down in that function an exit handler is attached for the process, which I think is supposed to take care of reaping the child? But maybe what's happening is that the xprop process finishes before the handler is attached?
A possible fix here might be to just directly call
Describe the bug
This extension does not reap the xprop processes used to remove decorations from maximized or tiled window.
To Reproduce
Steps to reproduce the behavior:
htop
forxprop
zombie processesExpected behavior
The extension should ensure that xprop processes are reaped
Environment (please complete the following information):
Additional context
The xprop process is started in
unite-shell/[email protected]/window.js
Line 41 in eb8bdd3
Util.spawn
adds theDO_NOT_REAP_CHILD
flag when starting a process (see here). Further down in that function an exit handler is attached for the process, which I think is supposed to take care of reaping the child? But maybe what's happening is that thexprop
process finishes before the handler is attached?A possible fix here might be to just directly call
The text was updated successfully, but these errors were encountered: