diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-11-20 22:01:03 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-11-20 22:01:03 +0100 |
commit | 39a3718b4e5f9c3d2977dc89a8792fd8b6b8e572 (patch) | |
tree | 14b757ad1537d20c1d2cc335f473d86e7a1f38ff /exec | |
parent | 85b5ecef376e901f8912196a17e79e390a0ba3a1 (diff) | |
download | hurd-39a3718b4e5f9c3d2977dc89a8792fd8b6b8e572.tar.gz hurd-39a3718b4e5f9c3d2977dc89a8792fd8b6b8e572.tar.bz2 hurd-39a3718b4e5f9c3d2977dc89a8792fd8b6b8e572.zip |
exec: TODO note about implementing interrupt
Diffstat (limited to 'exec')
-rw-r--r-- | exec/exec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exec/exec.c b/exec/exec.c index 24d71220..639564cb 100644 --- a/exec/exec.c +++ b/exec/exec.c @@ -1197,6 +1197,10 @@ do_exec (file_t file, /* We are now committed to the exec. It "should not fail". If it does fail now, the task will be hopelessly munged. */ + /* TODO: implement the interrupt RPC and properly avoid interrupts + from here on, so we can avoid disabling signals in exec*() and + spawn*(). */ + if (newtask == oldtask) { thread_t *threads; |