Simics is not supported. As such, the sample project README.txt files must not provide instructions on how to execute an image using Simics. Change-Id: I6cc09169902b5e10f50799c280d0bbc63f1ae624 Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
37 lines
949 B
Plaintext
37 lines
949 B
Plaintext
Title: Hello
|
|
|
|
Description:
|
|
|
|
A simple application that demonstates basic sanity of the VxMicro microkernel.
|
|
Two tasks (A and B) take turns printing a greeting message to the console,
|
|
and use sleep requests and semaphores to control the rate at which messages
|
|
are generated. This demonstrates that microkernel scheduling, communication,
|
|
and timing are operating correctly.
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
Building and Running Project:
|
|
|
|
This microkernel project outputs to the console. It can be built and executed
|
|
on QEMU as follows:
|
|
|
|
make pristine
|
|
make microkernel.qemu
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
Sample Output:
|
|
|
|
taskA: Hello World!
|
|
taskB: Hello World!
|
|
taskA: Hello World!
|
|
taskB: Hello World!
|
|
taskA: Hello World!
|
|
taskB: Hello World!
|
|
taskA: Hello World!
|
|
taskB: Hello World!
|
|
taskA: Hello World!
|
|
taskB: Hello World!
|
|
|
|
<repeats endlessly>
|