Merge pull request #13264 from ashok-rao/rtos-refactor
Moving around a few items within \rtos
ls
commit 2b60c871d80df86d645f0402d90b82b16ee247e9
2 parents e5e556f + f58c563
@Martin Kojtal Martin Kojtal authored on 20 Jul 2020
GitHub committed on 20 Jul 2020
Showing 81 changed files
View
TESTS/mbedmicro-rtos-mbed/MemoryPool/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/basic/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/condition_variable/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/event_flags/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/heap_and_stack/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/kernel_tick_count/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/mail/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/malloc/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/mutex/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/queue/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/semaphore/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/signals/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/systimer/main.cpp 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/threads/SynchronizedIntegral.h 100644 → 0
View
TESTS/mbedmicro-rtos-mbed/threads/main.cpp 100644 → 0
View
UNITTESTS/CMakeLists.txt
View
UNITTESTS/stubs/AT_ControlPlane_netif_stub.cpp
View
UNITTESTS/stubs/Kernel_stub.cpp
View
UNITTESTS/stubs/Semaphore_stub.cpp
View
UNITTESTS/stubs/Thread_stub.h
View
UNITTESTS/target_h/rtos/Mutex.h
View
UNITTESTS/target_h/rtos/Semaphore.h
View
UNITTESTS/target_h/rtos/Thread.h
View
UNITTESTS/target_h/rtos/include/rtos/internal/mbed_rtos1_types.h 0 → 100644
View
UNITTESTS/target_h/rtos/include/rtos/internal/mbed_rtos_storage.h 0 → 100644
View
UNITTESTS/target_h/rtos/mbed_rtos1_types.h 100644 → 0
View
UNITTESTS/target_h/rtos/mbed_rtos_storage.h 100644 → 0
View
features/cellular/framework/API/ATHandler.h
View
features/cellular/framework/API/CellularDevice.h
View
features/cellular/framework/AT/AT_CellularContext.cpp
View
features/cellular/framework/AT/AT_CellularContext.h
View
features/cellular/framework/AT/AT_CellularSMS.cpp
View
features/cellular/framework/AT/AT_CellularStack.cpp
View
features/cellular/framework/AT/AT_ControlPlane_netif.cpp
View
features/cellular/framework/device/ATHandler.cpp
View
features/cellular/framework/device/CellularContext.cpp
View
features/netsocket/TLSSocketWrapper.cpp
View
features/netsocket/nsapi_dns.cpp
View
rtos/ConditionVariable.h 100644 → 0
View
rtos/EventFlags.h 100644 → 0
View
rtos/Kernel.h 100644 → 0
View
rtos/Mail.h 100644 → 0
View
rtos/MemoryPool.h 100644 → 0
View
rtos/Mutex.h 100644 → 0
View
rtos/Queue.h 100644 → 0
View
rtos/Semaphore.h 100644 → 0
View
rtos/ThisThread.h 100644 → 0
View
rtos/Thread.h 100644 → 0
View
rtos/include/rtos/ConditionVariable.h 0 → 100644
View
rtos/include/rtos/EventFlags.h 0 → 100644
View
rtos/include/rtos/Kernel.h 0 → 100644
View
rtos/include/rtos/Mail.h 0 → 100644
View
rtos/include/rtos/MemoryPool.h 0 → 100644
View
rtos/include/rtos/Mutex.h 0 → 100644
View
rtos/include/rtos/Queue.h 0 → 100644
View
rtos/include/rtos/Semaphore.h 0 → 100644
View
rtos/include/rtos/ThisThread.h 0 → 100644
View
rtos/include/rtos/Thread.h 0 → 100644
View
rtos/include/rtos/internal/mbed_rtos1_types.h 0 → 100644
View
rtos/include/rtos/internal/mbed_rtos_storage.h 0 → 100644
View
rtos/include/rtos/mbed_rtos_types.h 0 → 100644
View
rtos/include/rtos/rtos.h 0 → 100644
View
rtos/mbed_rtos1_types.h 100644 → 0
View
rtos/mbed_rtos_storage.h 100644 → 0
View
rtos/mbed_rtos_types.h 100644 → 0
View
rtos/rtos.h 100644 → 0
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/MemoryPool/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/basic/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/condition_variable/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/event_flags/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/heap_and_stack/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/kernel_tick_count/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/mail/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/malloc/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/mutex/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/queue/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/semaphore/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/signals/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/systimer/main.cpp 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/threads/SynchronizedIntegral.h 0 → 100644
View
rtos/tests/TESTS/mbedmicro-rtos-mbed/threads/main.cpp 0 → 100644