Modified by Osama Ashaikh

Fork of mbed-rtos by mbed official

Revision:
121:33cea2f9dfee
Parent:
40:bd07334df5b1
--- a/rtos/Mutex.cpp	Mon Jan 11 17:00:32 2016 +0000
+++ b/rtos/Mutex.cpp	Fri Sep 02 02:10:10 2016 +0000
@@ -22,7 +22,7 @@
 #include "Mutex.h"
 
 #include <string.h>
-#include "mbed_error.h"
+//#include "mbed_error.h"
 
 namespace rtos {
 
@@ -33,7 +33,7 @@
 #endif
     _osMutexId = osMutexCreate(&_osMutexDef);
     if (_osMutexId == NULL) {
-        error("Error initializing the mutex object\n");
+        //error("Error initializing the mutex object\n");
     }
 }