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
Byebug stops the execution of the forked process and presents the source code, but it doesn't present a prompt, and while I can type anything, byebug doesn't react.
If I remove the Process.setpgrp line, everything works as expected. Similarly, if I switch the foreground process group with a C binding to tcsetpgrp, everything works as expected.
Expected behavior
I expected the (byebug) prompt to appear and to respond to input.
Actual behavior
The (byebug) prompt does not appear and byebug does not respond to input. (It hangs on readline.)
Steps to reproduce the problem
Run the program above.
The text was updated successfully, but these errors were encountered:
Problem description
When running the following program:
Byebug stops the execution of the forked process and presents the source code, but it doesn't present a prompt, and while I can type anything, byebug doesn't react.
If I remove the
Process.setpgrp
line, everything works as expected. Similarly, if I switch the foreground process group with a C binding totcsetpgrp
, everything works as expected.Expected behavior
I expected the
(byebug)
prompt to appear and to respond to input.Actual behavior
The
(byebug)
prompt does not appear and byebug does not respond to input. (It hangs onreadline
.)Steps to reproduce the problem
Run the program above.
The text was updated successfully, but these errors were encountered: