ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change
on this file since bdff89d was
73abe95,
checked in by Thierry Delisle <tdelisle@…>, 6 years ago
|
Replace extension-less headers with .hfa
|
-
Property mode set to
100644
|
File size:
389 bytes
|
Line | |
---|
1 | #include <kernel.hfa> |
---|
2 | #include <thread.hfa> |
---|
3 | |
---|
4 | struct MyThread { thread_desc __thrd; }; |
---|
5 | |
---|
6 | DECL_THREAD(MyThread); |
---|
7 | |
---|
8 | void ?{}( MyThread * this ) {} |
---|
9 | |
---|
10 | void main( MyThread* this ) { |
---|
11 | for(int i = 0; i < 1000000; i++) { |
---|
12 | yield(); |
---|
13 | } |
---|
14 | } |
---|
15 | |
---|
16 | int main(int argc, char* argv[]) { |
---|
17 | // sout | "User main begin" | endl; |
---|
18 | { |
---|
19 | processor p; |
---|
20 | { |
---|
21 | scoped(MyThread) f[4]; |
---|
22 | } |
---|
23 | } |
---|
24 | // sout | "User main end" | endl; |
---|
25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.