Skip to content

Commit 04fac35

Browse files
Ashok RaoAshok Rao
authored andcommitted
Incorporating reveiw comments - Moving mbed_rtos_types.h to public headers
1 parent 3a1b074 commit 04fac35

File tree

12 files changed

+11
-11
lines changed

12 files changed

+11
-11
lines changed

rtos/include/rtos/ConditionVariable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#include <stdint.h>
2727
#include <utility>
28-
#include "rtos/internal/mbed_rtos_types.h"
28+
#include "rtos/mbed_rtos_types.h"
2929
#include "rtos/Mutex.h"
3030
#include "rtos/Semaphore.h"
3131
#include "rtos/Kernel.h"

rtos/include/rtos/EventFlags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <cstddef>
2727
#include <stdint.h>
2828
#include "rtos/Kernel.h"
29-
#include "rtos/internal/mbed_rtos_types.h"
29+
#include "rtos/mbed_rtos_types.h"
3030
#include "rtos/internal/mbed_rtos1_types.h"
3131
#include "rtos/internal/mbed_rtos_storage.h"
3232

rtos/include/rtos/Kernel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#include <stdint.h>
2727
#include <chrono>
28-
#include "rtos/internal/mbed_rtos_types.h"
28+
#include "rtos/mbed_rtos_types.h"
2929
#include "platform/mbed_toolchain.h"
3030
#if !MBED_CONF_RTOS_PRESENT
3131
#include "platform/source/mbed_os_timer.h"

rtos/include/rtos/Mail.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
#include "rtos/Queue.h"
3030
#include "rtos/MemoryPool.h"
31-
#include "rtos/internal/mbed_rtos_types.h"
31+
#include "rtos/mbed_rtos_types.h"
3232
#include "rtos/internal/mbed_rtos_storage.h"
3333
#include "rtos/internal/mbed_rtos1_types.h"
3434

rtos/include/rtos/MemoryPool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <stdint.h>
2727
#include <string.h>
2828

29-
#include "rtos/internal/mbed_rtos_types.h"
29+
#include "rtos/mbed_rtos_types.h"
3030
#include "rtos/internal/mbed_rtos1_types.h"
3131
#include "rtos/internal/mbed_rtos_storage.h"
3232
#include "platform/NonCopyable.h"

rtos/include/rtos/Mutex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define MUTEX_H
2525

2626
#include <stdint.h>
27-
#include "rtos/internal/mbed_rtos_types.h"
27+
#include "rtos/mbed_rtos_types.h"
2828
#include "rtos/internal/mbed_rtos1_types.h"
2929
#include "rtos/internal/mbed_rtos_storage.h"
3030
#include "rtos/Kernel.h"

rtos/include/rtos/Queue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#ifndef QUEUE_H
2424
#define QUEUE_H
2525

26-
#include "rtos/internal/mbed_rtos_types.h"
26+
#include "rtos/mbed_rtos_types.h"
2727
#include "rtos/internal/mbed_rtos1_types.h"
2828
#include "rtos/internal/mbed_rtos_storage.h"
2929
#include "rtos/Kernel.h"

rtos/include/rtos/Semaphore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#include <stdint.h>
2727
#include <chrono>
28-
#include "rtos/internal/mbed_rtos_types.h"
28+
#include "rtos/mbed_rtos_types.h"
2929
#include "rtos/internal/mbed_rtos1_types.h"
3030
#include "rtos/internal/mbed_rtos_storage.h"
3131
#include "rtos/Kernel.h"

rtos/include/rtos/ThisThread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <stdint.h>
2727
#include "platform/mbed_toolchain.h"
2828
#include "rtos/Kernel.h"
29-
#include "rtos/internal/mbed_rtos_types.h"
29+
#include "rtos/mbed_rtos_types.h"
3030

3131
namespace rtos {
3232
/** \addtogroup rtos-public-api */

rtos/include/rtos/Thread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define THREAD_H
2525

2626
#include <stdint.h>
27-
#include "rtos/internal/mbed_rtos_types.h"
27+
#include "rtos/mbed_rtos_types.h"
2828
#include "rtos/internal/mbed_rtos1_types.h"
2929
#include "rtos/internal/mbed_rtos_storage.h"
3030
#include "platform/Callback.h"

0 commit comments

Comments
 (0)