Changeset c486e917 in rtems
- Timestamp:
- 06/18/96 19:06:19 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8d7a1d76
- Parents:
- 7d74395f
- Location:
- c/src/lib/libbsp/m68k
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/efi332/include/efi332.h
r7d74395f rc486e917 41 41 42 42 /* macros/functions */ 43 #if 0 43 44 static void reboot(void) __attribute__ ((noreturn)); 44 45 __inline__ static void reboot() {asm("trap #15");} 46 #else 47 #define reboot() do {asm("trap #15");} while(0) 48 #endif 45 49 46 50 #endif /* _EFI332_H_ */ -
c/src/lib/libbsp/m68k/efi68k/include/efi68k.h
r7d74395f rc486e917 16 16 17 17 /* macro/function definitions */ 18 #if 0 18 19 static void reboot(void) __attribute__ ((noreturn)); 19 __inline__ static void reboot(void) {asm("trap #15");} 20 __inline__ static void reboot() {asm("trap #15");} 21 #else 22 #define reboot() do {asm("trap #15");} while(0) 23 #endif 24 20 25 21 26 #endif /* _EFI68k_H_ */
Note: See TracChangeset
for help on using the changeset viewer.