Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-rtos by
Revision 125:23ce2f4ef62d, committed 2017-05-26
- Comitter:
- artpes
- Date:
- Fri May 26 09:53:54 2017 +0000
- Parent:
- 124:59573e78fcc4
- Commit message:
- rtos
Changed in this revision
--- a/rtos/Mutex.cpp Fri May 19 14:45:03 2017 +0000
+++ b/rtos/Mutex.cpp Fri May 26 09:53:54 2017 +0000
@@ -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");
}
}
--- a/rtos/RtosTimer.cpp Fri May 19 14:45:03 2017 +0000
+++ b/rtos/RtosTimer.cpp Fri May 26 09:53:54 2017 +0000
@@ -24,7 +24,7 @@
#include <string.h>
#include "cmsis_os.h"
-#include "error.h"
+//#include "error.h"
namespace rtos {
--- a/rtos/Semaphore.cpp Fri May 19 14:45:03 2017 +0000
+++ b/rtos/Semaphore.cpp Fri May 26 09:53:54 2017 +0000
@@ -22,7 +22,7 @@
#include "Semaphore.h"
#include <string.h>
-#include "error.h"
+//#include "error.h"
namespace rtos {
--- a/rtos/Thread.cpp Fri May 19 14:45:03 2017 +0000
+++ b/rtos/Thread.cpp Fri May 26 09:53:54 2017 +0000
@@ -21,7 +21,7 @@
*/
#include "Thread.h"
-#include "error.h"
+//#include "error.h"
namespace rtos {
@@ -37,7 +37,7 @@
} else {
_thread_def.stack_pointer = new unsigned char[stack_size];
if (_thread_def.stack_pointer == NULL)
- error("Error allocating the stack memory\n");
+ //error("Error allocating the stack memory\n");
_dynamic_stack = true;
}
#endif
--- a/rtx/RTX_CM_lib.h Fri May 19 14:45:03 2017 +0000 +++ b/rtx/RTX_CM_lib.h Fri May 26 09:53:54 2017 +0000 @@ -31,7 +31,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. *---------------------------------------------------------------------------*/ -#include "error.h" +//#include "error.h" #if defined (__CC_ARM) #pragma O3
