source: examples/multicore.c @ 42cd451

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 42cd451 was 200fcb3, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

add auto newline to sout, change endl to nl

  • Property mode set to 100644
File size: 376 bytes
Line 
1#include <kernel.hfa>
2#include <thread.hfa>
3
4struct MyThread { thread_desc __thrd; };
5
6DECL_THREAD(MyThread);
7
8void ?{}( MyThread * this ) {}
9
10void main( MyThread* this ) {
11        for(int i = 0; i < 1000000; i++) {
12                yield();
13        }
14}
15
16int main(int argc, char* argv[]) {
17        // sout | "User main begin";
18        {
19                processor p;
20                {
21                        scoped(MyThread) f[4];
22                }
23        }
24        // sout | "User main end";
25}
Note: See TracBrowser for help on using the repository browser.