Home
last modified time | relevance | path

Searched refs:STACK_SIZE (Results 1 – 17 of 17) sorted by relevance

/TwlSDK-5.1.0/build/demos/os/threadQueue-1/src/
Dmain.c19 #define STACK_SIZE 1024 macro
27 u64 stack1[STACK_SIZE / sizeof(u64)];
28 u64 stack2[STACK_SIZE / sizeof(u64)];
52 …OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, THREAD1_PRIO… in NitroMain()
53 …OS_CreateThread(&thread2, proc2, NULL, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, THREAD2_PRIO… in NitroMain()
/TwlSDK-5.1.0/build/demos/os/thread-1/src/
Dmain.c19 #define STACK_SIZE 1024 macro
27 u64 stack1[STACK_SIZE / sizeof(u64)];
28 u64 stack2[STACK_SIZE / sizeof(u64)];
51 …OS_CreateThread(&thread1, proc1, (void *)0x111, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, THR… in NitroMain()
52 …OS_CreateThread(&thread2, proc2, (void *)0x222, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, THR… in NitroMain()
/TwlSDK-5.1.0/build/demos/os/threadYield-1/src/
Dmain.c44 #define STACK_SIZE 1024 macro
54 u64 stack1[STACK_SIZE / sizeof(u64)];
55 u64 stack2[STACK_SIZE / sizeof(u64)];
56 u64 stack3[STACK_SIZE / sizeof(u64)];
110 …OS_CreateThread(&thread1, proc1, (void *)0, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, THREAD1… in startTest()
111 …OS_CreateThread(&thread2, proc2, (void *)0, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, THREAD2… in startTest()
112 …OS_CreateThread(&thread3, proc3, (void *)0, stack3 + STACK_SIZE / sizeof(u64), STACK_SIZE, THREAD3… in startTest()
/TwlSDK-5.1.0/build/demos/os/thread-2/src/
Dmain.c19 #define STACK_SIZE 1024 macro
26 u32 stack1[STACK_SIZE / sizeof(u32)];
27 u32 stack2[STACK_SIZE / sizeof(u32)];
53 …OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u32), STACK_SIZE, THREAD1_PRIO… in NitroMain()
54 …OS_CreateThread(&thread2, proc2, NULL, stack2 + STACK_SIZE / sizeof(u32), STACK_SIZE, THREAD2_PRIO… in NitroMain()
/TwlSDK-5.1.0/build/demos/os/waitIrq-2/src/
Dmain.c19 #define STACK_SIZE 1024 macro
31 u32 stack1[STACK_SIZE / sizeof(u32)];
32 u32 stack2[STACK_SIZE / sizeof(u32)];
100 …OS_CreateThread(&thread1, proc1, (void*)1, stack1 + STACK_SIZE / sizeof(u32), STACK_SIZE, THREAD1_… in startThreads()
101 …OS_CreateThread(&thread2, proc1, (void*)2, stack2 + STACK_SIZE / sizeof(u32), STACK_SIZE, THREAD2_… in startThreads()
/TwlSDK-5.1.0/build/demos/os/functionCost-3/src/
Dmain.c26 #define STACK_SIZE 1024 macro
34 u64 stack1[STACK_SIZE / sizeof(u64)];
35 u64 stack2[STACK_SIZE / sizeof(u64)];
61 OS_CreateThread(&thread1, proc1, (void *)0x111, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
63 OS_CreateThread(&thread2, proc2, (void *)0x222, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
/TwlSDK-5.1.0/build/demos/os/mutex-2/src/
Dmain.c26 #define STACK_SIZE 1024 macro
31 u64 stack1[STACK_SIZE / sizeof(u64)];
32 u64 stack2[STACK_SIZE / sizeof(u64)];
62 OS_CreateThread(&thread2, proc2, NULL, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
90 OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
/TwlSDK-5.1.0/build/demos/os/thread-3/src/
Dmain.c19 #define STACK_SIZE 1024 macro
27 u32 stack1[STACK_SIZE / sizeof(u32)];
62 …OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u32), STACK_SIZE, THREAD1_PRIO… in NitroMain()
74 …OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u32), STACK_SIZE, THREAD1_PRIO… in NitroMain()
/TwlSDK-5.1.0/build/demos/os/functionCost-2/src/
Dmain.c29 #define STACK_SIZE 1024 macro
37 u64 stack1[STACK_SIZE / sizeof(u64)];
38 u64 stack2[STACK_SIZE / sizeof(u64)];
64 OS_CreateThread(&thread1, proc1, (void *)0x111, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
66 OS_CreateThread(&thread2, proc2, (void *)0x222, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
/TwlSDK-5.1.0/build/demos/os/callTrace-2/src/
Dmain.c18 #define STACK_SIZE 1024 macro
26 u64 stack1[STACK_SIZE / sizeof(u64)];
27 u64 stack2[STACK_SIZE / sizeof(u64)];
101 OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
103 OS_CreateThread(&thread2, proc2, NULL, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
/TwlSDK-5.1.0/build/demos/os/waitIrq-1/src/
Dmain.c19 #define STACK_SIZE 1024 macro
23 u32 stack1[STACK_SIZE / sizeof(u32)];
46 …OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u32), STACK_SIZE, THREAD1_PRIO… in NitroMain()
/TwlSDK-5.1.0/build/demos/os/message-1/src/
Dmain.c19 #define STACK_SIZE 1024 macro
27 u64 stack1[STACK_SIZE / sizeof(u64)];
50 …OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, THREAD1_PRIO… in NitroMain()
/TwlSDK-5.1.0/build/demos/os/mutex-1/src/
Dmain.c27 #define STACK_SIZE 1024 macro
32 u64 stack1[STACK_SIZE / sizeof(u64)];
33 u64 stack2[STACK_SIZE / sizeof(u64)];
63 OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
65 OS_CreateThread(&thread2, proc2, NULL, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
/TwlSDK-5.1.0/build/demos/cp/ThreadSafeTest/src/
Dmain.c52 #define STACK_SIZE 1024 macro
58 u64 stack1[STACK_SIZE / sizeof(u64)];
59 u64 stack2[STACK_SIZE / sizeof(u64)];
116 OS_CreateThread(&thread1, proc1, (void *)0x111, stack1 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
118 OS_CreateThread(&thread2, proc2, (void *)0x222, stack2 + STACK_SIZE / sizeof(u64), STACK_SIZE, in NitroMain()
/TwlSDK-5.1.0/build/demos/os/event-1/src/
Dmain.c20 #define STACK_SIZE 1024 macro
28 u64 stack1[STACK_SIZE / sizeof(u64)];
61 stack1 + STACK_SIZE / sizeof(u64), in NitroMain()
62 STACK_SIZE, in NitroMain()
/TwlSDK-5.1.0/build/demos/os/sleep-1/src/
Dmain.c35 #define STACK_SIZE 1024 macro
41 u64 stack[STACK_SIZE / sizeof(u64)];
74 OS_CreateThread(&thread, proc, NULL, stack + STACK_SIZE / sizeof(u64), STACK_SIZE, THREAD_PRIO); in NitroMain()
/TwlSDK-5.1.0/build/demos/gx/UnitTours/Sub_Double3D/src/
Dmain.c45 #define STACK_SIZE 1024 macro
49 u32 stack1[STACK_SIZE / sizeof(u32)];
383 OS_CreateThread(&thread1, proc1, NULL, stack1 + STACK_SIZE / sizeof(u32), STACK_SIZE, in TwlMain()