@@ -58,7 +58,7 @@ class Thread {
58
58
The explicit Thread::start member function should be used to spawn
59
59
a thread.
60
60
*/
61
- MBED_DEPRECATED_SINCE (" v5 .1" ,
61
+ MBED_DEPRECATED_SINCE (" mbed-os-5 .1" ,
62
62
" Thread-spawning constructors hide errors and may lead to complex "
63
63
" program state when a thread is declared" )
64
64
Thread (mbed::Callback<void ()> task,
@@ -83,7 +83,7 @@ class Thread {
83
83
a thread.
84
84
*/
85
85
template <typename T>
86
- MBED_DEPRECATED_SINCE (" v5 .1" ,
86
+ MBED_DEPRECATED_SINCE (" mbed-os-5 .1" ,
87
87
" Thread-spawning constructors hide errors and may lead to complex "
88
88
" program state when a thread is declared" )
89
89
Thread (T *obj, void (T::*method)(),
@@ -109,7 +109,7 @@ class Thread {
109
109
a thread.
110
110
*/
111
111
template <typename T>
112
- MBED_DEPRECATED_SINCE (" v5 .1" ,
112
+ MBED_DEPRECATED_SINCE (" mbed-os-5 .1" ,
113
113
" Thread-spawning constructors hide errors and may lead to complex "
114
114
" program state when a thread is declared" )
115
115
Thread (T *obj, void (*method)(T *),
@@ -134,7 +134,7 @@ class Thread {
134
134
The explicit Thread::start member function should be used to spawn
135
135
a thread.
136
136
*/
137
- MBED_DEPRECATED_SINCE (" v5 .1" ,
137
+ MBED_DEPRECATED_SINCE (" mbed-os-5 .1" ,
138
138
" Thread-spawning constructors hide errors and may lead to complex "
139
139
" program state when a thread is declared" )
140
140
Thread (void (*task)(void const *argument), void *argument=NULL ,
0 commit comments