diff options
author | Malfurious <m@lfurio.us> | 2023-10-07 02:26:08 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-04-24 13:31:08 -0400 |
commit | 5bb0dfbdb6c0dc1f4a4f0e28393619469a1d4851 (patch) | |
tree | 24032ce2b01ccccd9982b344900e6186f1934924 /misplays.c | |
parent | 5589a9e3afd51bdf3d8715fb09b1667c6773b73f (diff) | |
download | misplays-5bb0dfbdb6c0dc1f4a4f0e28393619469a1d4851.tar.gz misplays-5bb0dfbdb6c0dc1f4a4f0e28393619469a1d4851.zip |
Tweak SCHEDULER_DELAY for use with installing breakpoints
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'misplays.c')
-rw-r--r-- | misplays.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ static pid_t dofork(char **argv, struct console *cons) { } if (pid == 0) { - usleep(100000); + usleep(10000); console_configslave(cons); close_range(STDERR_FILENO+1, ~0U, CLOSE_RANGE_UNSHARE); //raise(SIGSTOP); // ptrace(PTRACE_TRACEME, 0, NULL, NULL); |