Changes in src/libcfa/concurrency/invoke.h [82c948c:f7d6bb0]
- File:
-
- 1 edited
-
src/libcfa/concurrency/invoke.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.h
r82c948c rf7d6bb0 10 10 // Created On : Tue Jan 17 12:27:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jan 23 14:55:46 201813 // Update Count : 312 // Last Modified On : Fri Jul 21 22:28:56 2017 13 // Update Count : 1 14 14 // 15 15 … … 121 121 // coroutine body used to store context 122 122 struct coroutine_desc self_cor; 123 124 // current active context125 struct coroutine_desc * curr_cor;126 123 127 124 // monitor body used for mutual exclusion … … 212 209 "movl %%ebp,%1\n" \ 213 210 : "=rm" (ctx.SP), "=rm" (ctx.FP) ) 214 #elif defined( __ARM_ARCH )215 #define CtxGet( ctx ) __asm__ ( \216 "mov %0,%%sp\n" \217 "mov %1,%%r11\n" \218 : "=rm" (ctx.SP), "=rm" (ctx.FP) )219 211 #endif 220 212
Note:
See TracChangeset
for help on using the changeset viewer.