diff -r f45fd4cd3832 -r 34654679f262 doc/doxygen/html/exit_8h-source.html --- a/doc/doxygen/html/exit_8h-source.html Fri Jul 06 10:53:15 2007 +0200 +++ b/doc/doxygen/html/exit_8h-source.html Mon Jul 16 08:56:03 2007 +0200 @@ -18,7 +18,7 @@
00001 /* 00002 This file is part of CanFestival, a library implementing CanOpen Stack. 00003 @@ -71,26 +71,26 @@ 00050 #ifndef _M68HC11_ARCH_32K_EXIT_H 00051 #define _M68HC11_ARCH_32K_EXIT_H 00052 -00053 extern void _exit (short status) __attribute__((noreturn)); +00053 extern void _exit (short status) __attribute__((noreturn)); 00054 00055 /* For the simulator, the wai stops everything and exits with the 00056 error code stored in register d. 00057 00058 For a real 68HC11, enable interrupts and wait forever. */ 00059 extern inline void -00060 _exit (short status) +00060 _exit (short status) 00061 { 00062 /* Use 'd' constraint to force the status to be in the D 00063 register before execution of the asm. */ 00064 while (1) 00065 { -00066 __asm__ __volatile__ ("cli\n" +00066 __asm__ __volatile__ ("cli\n" 00067 "wai" : : "d"(status)); 00068 } 00069 } 00070 00071 #endif -