Ignore:
File:
1 edited

Legend:

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

    r3d6beaa rd99c1d2  
    164164}
    165165
    166 static 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 
    173166static inline uintptr_t get_stack_base(void)
    174167{
     
    182175}
    183176
     177static 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
    184187#endif
    185188
Note: See TracChangeset for help on using the changeset viewer.