Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/invoke.h

    rf7d6bb0 rb158d8f  
    1010// Created On       : Tue Jan 17 12:27:26 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jul 21 22:28:56 2017
    13 // Update Count     : 1
     12// Last Modified On : Tue Jan 23 14:55:46 2018
     13// Update Count     : 3
    1414//
    1515
     
    134134                // instrusive link field for threads
    135135                struct thread_desc * next;
    136 
    137                 __cfaabi_dbg_debug_do(
    138                         // instrusive link field for debugging
    139                         struct thread_desc * dbg_next;
    140                         struct thread_desc * dbg_prev;
    141                 )
    142136     };
    143137
     
    209203                        "movl %%ebp,%1\n"   \
    210204                : "=rm" (ctx.SP), "=rm" (ctx.FP) )
     205        #elif defined( __ARM_ARCH )
     206        #define CtxGet( ctx ) __asm__ ( \
     207                        "mov %0,%%sp\n"   \
     208                        "mov %1,%%r11\n"   \
     209                : "=rm" (ctx.SP), "=rm" (ctx.FP) )
    211210        #endif
    212211
Note: See TracChangeset for help on using the changeset viewer.