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.
Dependencies: C12832 EthernetInterface LM75B MMA7660 MQTT mbed-rtos mbed
Fork of IBMIoTClientEthernetExample by
Diff: mbed-rtos/rtos/Thread.cpp
- Revision:
- 9:58eb378727d9
- Parent:
- 8:80d49dd91542
- Child:
- 10:0b5e0dfee08e
--- a/mbed-rtos/rtos/Thread.cpp Wed Oct 01 13:27:35 2014 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,90 +0,0 @@
-/* mbed Microcontroller Library
- * Copyright (c) 2006-2012 ARM Limited
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-#include "Thread.h"
-
-#include "error.h"
-
-namespace rtos {
-
-Thread::Thread(void (*task)(void const *argument), void *argument,
- osPriority priority, uint32_t stack_size, unsigned char *stack_pointer) {
-#ifdef CMSIS_OS_RTX
- _thread_def.pthread = task;
- _thread_def.tpriority = priority;
- _thread_def.stacksize = stack_size;
- if (stack_pointer != NULL) {
- _thread_def.stack_pointer = stack_pointer;
- _dynamic_stack = false;
- } else {
- _thread_def.stack_pointer = new unsigned char[stack_size];
- if (_thread_def.stack_pointer == NULL)
- error("Error allocating the stack memory\n");
- _dynamic_stack = true;
- }
-#endif
- _tid = osThreadCreate(&_thread_def, argument);
-}
-
-osStatus Thread::terminate() {
- return osThreadTerminate(_tid);
-}
-
-osStatus Thread::set_priority(osPriority priority) {
- return osThreadSetPriority(_tid, priority);
-}
-
-osPriority Thread::get_priority() {
- return osThreadGetPriority(_tid);
-}
-
-int32_t Thread::signal_set(int32_t signals) {
- return osSignalSet(_tid, signals);
-}
-
-Thread::State Thread::get_state() {
- return ((State)_thread_def.tcb.state);
-}
-
-osEvent Thread::signal_wait(int32_t signals, uint32_t millisec) {
- return osSignalWait(signals, millisec);
-}
-
-osStatus Thread::wait(uint32_t millisec) {
- return osDelay(millisec);
-}
-
-osStatus Thread::yield() {
- return osThreadYield();
-}
-
-osThreadId Thread::gettid() {
- return osThreadGetId();
-}
-
-Thread::~Thread() {
- terminate();
- if (_dynamic_stack) {
- delete[] (_thread_def.stack_pointer);
- }
-}
-
-}
