Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/abs32le/include/asm.h

    rd99c1d2 r3d6beaa  
    164164}
    165165
     166static inline bool interrupts_disabled(void)
     167{
     168        /* On real hardware the return value is true iff interrupts are
     169           disabled. */
     170        return false;
     171}
     172
    166173static inline uintptr_t get_stack_base(void)
    167174{
     
    175182}
    176183
    177 static inline uintptr_t *get_ip()
    178 {
    179         /* On real hardware this returns the current instruction
    180            pointer value. The value certainly changes with each
    181            instruction, but it can be still used to identify
    182            a specific function. */
    183        
    184         return 0;
    185 }
    186 
    187184#endif
    188185
Note: See TracChangeset for help on using the changeset viewer.