diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-24 10:25:08 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-25 15:19:12 +0000 |
| commit | 70075a64519de3e760ebae7465e5409088c13d19 (patch) | |
| tree | 9201d6ea595836099311a39691b87efb1263bb24 | |
| parent | 3a027ac3667c965d512e7da1dd95a7d6ee20a3fb (diff) | |
| download | focaccia-70075a64519de3e760ebae7465e5409088c13d19.tar.gz focaccia-70075a64519de3e760ebae7465e5409088c13d19.zip | |
Set the schedule timeout to 0
| -rw-r--r-- | run.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/run.py b/run.py index e3e6bc9..e7a7ad4 100644 --- a/run.py +++ b/run.py @@ -19,8 +19,7 @@ from ptrace.debugger import ( # If scheduler does not provide input within this time (seconds), # continue running the last chosen thread. -SCHED_TIMEOUT = 0.1 - +SCHED_TIMEOUT = 0 # ---------------------------------------------------------------------- # Scheduler (non-blocking) |