diff options
author | Damien Zammit via Bug reports for the GNU Hurd <bug-hurd@gnu.org> | 2024-11-26 10:37:58 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-12-09 01:55:44 +0100 |
commit | 6db346c1b8e193f6b8d1861364bb3498c4def4ab (patch) | |
tree | 25311e6e2eba6e7a8e1a94260761a8a0987aa870 /sutils/Makefile | |
parent | 63d8cb89bcee8c0e1cd140b948b6d2ced7974677 (diff) | |
download | hurd-6db346c1b8e193f6b8d1861364bb3498c4def4ab.tar.gz hurd-6db346c1b8e193f6b8d1861364bb3498c4def4ab.tar.bz2 hurd-6db346c1b8e193f6b8d1861364bb3498c4def4ab.zip |
sutils: Add smp tool to run process on slave processors
Until we make gnumach fully parallel, we need a way to execute
on slave processor set on smp-enabled gnumach.
For example:
$ /sbin/smp /bin/bash
$
will launch a shell that executes commands only within slave pset,
consisting of all processors except processor 0.
We can thus test parallelism on Hurd in a controlled way.
Message-ID: <20241126103747.353948-1-damien@zamaudio.com>
Diffstat (limited to 'sutils/Makefile')
-rw-r--r-- | sutils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sutils/Makefile b/sutils/Makefile index 5bb92c0b..07d0fb99 100644 --- a/sutils/Makefile +++ b/sutils/Makefile @@ -20,7 +20,7 @@ dir := sutils makemode := utilities -progs = reboot halt fsck swapon swapoff bless +progs = reboot halt fsck swapon swapoff bless smp scripts = e2os MAKEDEV losetup targets = $(special-targets) $(progs) special-targets = $(scripts) |