]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/portable/MSVC-MingW/portmacro.h
Add trace macros into the event groups implementation.
[freertos] / FreeRTOS / Source / portable / MSVC-MingW / portmacro.h
index 518223622c8314a09845dfe2352d231157444f99..03a9bc981d91fc0862621fd2c69108fabf0fcde2 100644 (file)
@@ -139,7 +139,7 @@ void vPortExitCritical( void );
 #define portINTERRUPT_YIELD                            ( 0UL )\r
 #define portINTERRUPT_TICK                             ( 1UL )\r
 \r
-/* \r
+/*\r
  * Raise a simulated interrupt represented by the bit mask in ulInterruptMask.\r
  * Each bit can be used to represent an individual interrupt - with the first\r
  * two bits being used for the Yield and Tick interrupts respectively.\r
@@ -147,13 +147,13 @@ void vPortExitCritical( void );
 void vPortGenerateSimulatedInterrupt( unsigned long ulInterruptNumber );\r
 \r
 /*\r
- * Install an interrupt handler to be called by the simulated interrupt handler \r
+ * Install an interrupt handler to be called by the simulated interrupt handler\r
  * thread.  The interrupt number must be above any used by the kernel itself\r
  * (at the time of writing the kernel was using interrupt numbers 0, 1, and 2\r
- * as defined above).  The number must also be lower than 32. \r
+ * as defined above).  The number must also be lower than 32.\r
  *\r
  * Interrupt handler functions must return a non-zero value if executing the\r
- * handler resulted in a task switch being required. \r
+ * handler resulted in a task switch being required.\r
  */\r
 void vPortSetInterruptHandler( unsigned long ulInterruptNumber, unsigned long (*pvHandler)( void ) );\r
 \r