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-24 10:25:08 +0000 |
| commit | 4df9202dfbf51f01a4ef6a225c0a02d6d9e4634b (patch) | |
| tree | f59cc5b2598a0d784b1df30f93d1738bfadba748 | |
| parent | 64e4feea2371ba279cb64cfbbfb5a3d0fbda0b4c (diff) | |
| download | focaccia-4df9202dfbf51f01a4ef6a225c0a02d6d9e4634b.tar.gz focaccia-4df9202dfbf51f01a4ef6a225c0a02d6d9e4634b.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) |