Changes in src/benchmark/bench.c [17af7d1:29f44a74]
- File:
-
- 1 edited
-
src/benchmark/bench.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/bench.c
r17af7d1 r29f44a74 86 86 //======================================= 87 87 88 struct CoroutineDummy { coroutine_desc __cor; };88 struct CoroutineDummy { coroutine_desc c; }; 89 89 DECL_COROUTINE(CoroutineDummy); 90 90 void main(CoroutineDummy * this) {} … … 119 119 struct CoroutineResume { 120 120 int N; 121 coroutine_desc __cor;121 coroutine_desc c; 122 122 }; 123 123 … … 150 150 //======================================= 151 151 152 struct ThreadDummy { thread_desc __thrd; };152 struct ThreadDummy { thread_desc t; }; 153 153 DECL_THREAD(ThreadDummy); 154 154 void main(ThreadDummy * this) {} … … 180 180 int N; 181 181 long long result; 182 thread_desc __thrd;182 thread_desc t; 183 183 }; 184 184
Note:
See TracChangeset
for help on using the changeset viewer.