]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/Common/ethernet/lwIP_130/contrib/port/FreeRTOS/ColdFire/__sys_arch.c
Start to remove unnecessary 'signed char *' casts from strings that are now just...
[freertos] / FreeRTOS / Demo / Common / ethernet / lwIP_130 / contrib / port / FreeRTOS / ColdFire / __sys_arch.c
index 54210efb6b470d55599ba253da2457c83f573539..7097b3307c01d0f81a59fd7c28789b7a6f5e5f2e 100644 (file)
@@ -131,7 +131,7 @@ sys_arch_unprotect( sys_prot_t pval )
  */\r
 void\r
 sys_assert( const char *msg )\r
-{      \r
+{\r
        /*FSL:only needed for debugging\r
        printf(msg);\r
        printf("\n\r");\r
@@ -204,7 +204,7 @@ sys_thread_new(char *name, void ( *thread ) ( void *arg ), void *arg, int /*size
         THREAD_INIT( p );\r
 \r
         /* Now q points to a free element in the list. */\r
-        if( xTaskCreate( thread, (const signed char *const)name, stacksize, arg, prio, &p->pid ) == pdPASS )\r
+        if( xTaskCreate( thread, name, stacksize, arg, prio, &p->pid ) == pdPASS )\r
         {\r
             thread_hdl = p;\r
         }\r
@@ -257,7 +257,7 @@ sys_arch_thread_remove( sys_thread_t hdl )
             vPortFree( toremove );\r
         }\r
     }\r
-    /* We are done with accessing the shared datastructure. Release the \r
+    /* We are done with accessing the shared datastructure. Release the\r
      * resources.\r
      */\r
     vPortExitCritical(  );\r
@@ -489,7 +489,7 @@ sys_mbox_post( sys_mbox_t mbox, void *data )
 }\r
 \r
 /*FSL*/\r
-/*  \r
+/*\r
  *Try to post the "msg" to the mailbox. Returns ERR_MEM if this one\r
  *is full, else, ERR_OK if the "msg" is posted.\r
  */\r