Changeset 176


Ignore:
Timestamp:
Jul 21, 2012, 10:28:22 AM (12 years ago)
Author:
karaoui
Message:

abort() in libs/common.h is now a static inline function.

Location:
soft/giet_vm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/apps/router/Makefile

    r175 r176  
    22
    33USE+= stdio.o
    4 USE+= common.o
    54USE+= mwmr_channel.o
    65
  • soft/giet_vm/libs/common.h

    r175 r176  
    2727 */
    2828
    29 inline void __abort();
     29static inline void __abort()
     30{
     31        asm volatile ("break 0");
     32        while(1);
     33}
    3034
    3135////////////////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.