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 /debugger.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 'debugger.c')
-rw-r--r-- | debugger.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -20,7 +20,7 @@ static const int PTRACE_OPTIONS = static const int PTRACE_CHILD_OPTIONS = PTRACE_OPTIONS | PTRACE_O_EXITKILL; //static const int STOP_ALL_ON_EVENT = 1; -static const useconds_t SCHEDULER_DELAY = 100000; +static const useconds_t SCHEDULER_DELAY = 10000; static const unsigned int BREAKPOINT_INSN = 0xcc; static struct process *new_process(pid_t id, int child) { @@ -224,6 +224,7 @@ static void continue_all_threads(struct process *proc) { static void resume_threads(struct process *proc) { struct list *threads = &proc->threads; + int once = 0; for (struct thread *th = threads->head; th != threads->end; th = th->next) { if (th->doing == PTRACE_SINGLESTEP) { @@ -236,6 +237,10 @@ static void resume_threads(struct process *proc) { for (struct thread *th = threads->head; th != threads->end; th = th->next) { if (th->doing && th->doing != PTRACE_SINGLESTEP) { + if (!once) { + usleep(SCHEDULER_DELAY); + once = 1; + } install_breakpoints(th); ptrace(th->doing, th->id, NULL, th->signal); th->stopped = 0; |