diff -r f45fd4cd3832 -r 34654679f262 doc/doxygen/html/interrupt_8c-source.html --- a/doc/doxygen/html/interrupt_8c-source.html Fri Jul 06 10:53:15 2007 +0200 +++ b/doc/doxygen/html/interrupt_8c-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 @@ -60,30 +60,30 @@ 00039 #include "../include/hcs12/asm-m68hc12/ports.h" 00040 #include "../include/hcs12/interrupt.h" 00041 -00042 extern volatile char msgRecu; -00043 extern volatile Message canMsgRcv; +00042 extern volatile char msgRecu; +00043 extern volatile Message canMsgRcv; 00044 00045 00046 00047 /* Inhibe les interruptions */ 00048 -00049 void lock (void) +00049 void lock (void) 00050 { 00051 unsigned short mask; -00052 __asm__ __volatile__ ("tpa\n\tsei" : "=d"(mask)); +00052 __asm__ __volatile__ ("tpa\n\tsei" : "=d"(mask)); 00053 00054 } 00055 00056 /* Autorise les interruptions */ -00057 void unlock (void) +00057 void unlock (void) 00058 { -00059 __asm__ __volatile__ ("cli"); +00059 __asm__ __volatile__ ("cli"); 00060 } 00061 00062 00063 00064 -