Modified by Osama Ashaikh

Fork of mbed-rtos by mbed official

Revision:
121:33cea2f9dfee
Parent:
40:bd07334df5b1
--- a/rtos/Queue.h	Mon Jan 11 17:00:32 2016 +0000
+++ b/rtos/Queue.h	Fri Sep 02 02:10:10 2016 +0000
@@ -26,7 +26,7 @@
 #include <string.h>
 
 #include "cmsis_os.h"
-#include "mbed_error.h"
+//#include "mbed_error.h"
 
 namespace rtos {
 
@@ -48,7 +48,7 @@
     #endif
         _queue_id = osMessageCreate(&_queue_def, NULL);
         if (_queue_id == NULL) {
-            error("Error initialising the queue object\n");
+            //////error("Error initialising the queue object\n");
         }
     }