Changes between Version 2 and Version 3 of Arch/Emu
- Timestamp:
- Jun 21, 2010, 11:57:46 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Arch/Emu
v2 v3 1 1 = Emu architecture = 2 2 3 MutekH may be run as a single UNIX process.3 MutekH may be run embedded in a UNIX process in a way similar to [http://en.wikipedia.org/wiki/User-mode_Linux user mode linux]. 4 4 5 This is mostly used for testing algorithmic parts of the OS (memory allocator, network stack, …) without the pain of cross-debugging or embedded debugging. Moreover, as MutekH is a normal process, some powerful tools like Valgrind can be used. 6 7 Multiprocessor emulation is supported on Linux, through multiple Unix processes and shared memory. This allow experimenting with true concurrency when used on a multiprocessor host machine. 5 The [QuickStartUnix MutekH as Unix process quick start guide] show how easy it is to compile and run MutekH as a UNIX process. 8 6 9 7 = Host kernel supports = 10 8 11 9 Linux (x86 and x86-64) and Darwin (x86) are supported host kernels. 10 11 Multiprocessor emulation is supported on Linux hosts, through multiple Unix processes and shared memory. This allow experimenting with true concurrency when used on a multiprocessor host machine. 12