@@ -318,19 +318,6 @@ class Thread : private mbed::NonCopyable<Thread> {
318
318
*/
319
319
uint32_t flags_set (uint32_t flags);
320
320
321
- /* * Set the specified Thread Flags for the thread.
322
- @param signals specifies the signal flags of the thread that should be set.
323
- @return signal flags after setting or osFlagsError in case of incorrect parameters.
324
-
325
- @note You may call this function from ISR context.
326
- @deprecated Other signal_xxx methods have been deprecated in favour of ThisThread::flags functions.
327
- To match this naming scheme, derived from CMSIS-RTOS2, Thread::flags_set is now provided.
328
- */
329
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
330
- " Other signal_xxx methods have been deprecated in favour of ThisThread::flags functions. "
331
- " To match this naming scheme, derived from CMSIS-RTOS2, Thread::flags_set is now provided." )
332
- int32_t signal_set (int32_t signals);
333
-
334
321
/* * State of the Thread */
335
322
enum State {
336
323
Inactive, /* *< NOT USED */
@@ -403,112 +390,6 @@ class Thread : private mbed::NonCopyable<Thread> {
403
390
*/
404
391
osThreadId_t get_id () const ;
405
392
406
- /* * Clears the specified Thread Flags of the currently running thread.
407
- @param signals specifies the signal flags of the thread that should be cleared.
408
- @return signal flags before clearing or osFlagsError in case of incorrect parameters.
409
-
410
- @note You cannot call this function from ISR context.
411
- @deprecated Static methods only affecting current thread cause confusion. Replaced by ThisThread::flags_clear.
412
- */
413
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
414
- " Static methods only affecting current thread cause confusion. "
415
- " Replaced by ThisThread::flags_clear." )
416
- static int32_t signal_clr (int32_t signals);
417
-
418
- /* * Wait for one or more Thread Flags to become signaled for the current RUNNING thread.
419
- @param signals wait until all specified signal flags are set or 0 for any single signal flag.
420
- @param millisec timeout value. (default: osWaitForever).
421
- @return event flag information or error code. @note if @a millisec is set to 0 and flag is no set the event carries osOK value.
422
-
423
- @note You cannot call this function from ISR context.
424
- @deprecated Static methods only affecting current thread cause confusion.
425
- Replaced by ThisThread::flags_wait_all, ThisThread::flags_wait_all_for, ThisThread::flags_wait_any and ThisThread:wait_any_for.
426
- */
427
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
428
- " Static methods only affecting current thread cause confusion. "
429
- " Replaced by ThisThread::flags_wait_all, ThisThread::flags_wait_all_for, ThisThread::flags_wait_any and ThisThread:wait_any_for." )
430
- static osEvent signal_wait (int32_t signals, uint32_t millisec = osWaitForever);
431
-
432
- /* * Wait for a specified time period in milliseconds
433
- Being tick-based, the delay will be up to the specified time - eg for
434
- a value of 1 the system waits until the next millisecond tick occurs,
435
- leading to a delay of 0-1 milliseconds.
436
- @param millisec time delay value
437
- @return status code that indicates the execution status of the function.
438
-
439
- @note You cannot call this function from ISR context.
440
- @deprecated Static methods only affecting current thread cause confusion. Replaced by ThisThread::sleep_for.
441
- */
442
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
443
- " Static methods only affecting current thread cause confusion. "
444
- " Replaced by ThisThread::sleep_for." )
445
- static osStatus wait (uint32_t millisec);
446
-
447
- /* * Wait until a specified time in millisec
448
- The specified time is according to Kernel::get_ms_count().
449
- @param millisec absolute time in millisec
450
- @return status code that indicates the execution status of the function.
451
- @note not callable from interrupt
452
- @note if millisec is equal to or lower than the current tick count, this
453
- returns immediately, either with an error or "osOK".
454
- @note the underlying RTOS may have a limit to the maximum wait time
455
- due to internal 32-bit computations, but this is guaranteed to work if the
456
- delay is <= 0x7fffffff milliseconds (~24 days). If the limit is exceeded,
457
- it may return with an immediate error, or wait for the maximum delay.
458
-
459
- @note You cannot call this function from ISR context.
460
- @deprecated Static methods only affecting current thread cause confusion. Replaced by ThisThread::sleep_until.
461
- */
462
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
463
- " Static methods only affecting current thread cause confusion. "
464
- " Replaced by ThisThread::sleep_until." )
465
- static osStatus wait_until (uint64_t millisec);
466
-
467
- /* * Pass control to next thread that is in state READY.
468
- @return status code that indicates the execution status of the function.
469
-
470
- @note You cannot call this function from ISR context.
471
- @deprecated Static methods only affecting current thread cause confusion. Replaced by ThisThread::sleep_until.
472
- */
473
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
474
- " Static methods only affecting current thread cause confusion. "
475
- " Replaced by ThisThread::yield." )
476
- static osStatus yield ();
477
-
478
- /* * Get the thread id of the current running thread.
479
- @return thread ID for reference by other functions or nullptr in case of error.
480
-
481
- @note You may call this function from ISR context.
482
- @deprecated Static methods only affecting current thread cause confusion. Replaced by ThisThread::get_id.
483
- Use Thread::get_id for the ID of a specific Thread.
484
- */
485
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
486
- " Static methods only affecting current thread cause confusion. "
487
- " Replaced by ThisThread::get_id. Use Thread::get_id for the ID of a specific Thread." )
488
- static osThreadId gettid ();
489
-
490
- /* * Attach a function to be called by the RTOS idle task
491
- @param fptr pointer to the function to be called
492
-
493
- @note You may call this function from ISR context.
494
- @deprecated Static methods affecting system cause confusion. Replaced by Kernel::attach_idle_hook.
495
- */
496
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
497
- " Static methods affecting system cause confusion. "
498
- " Replaced by Kernel::attach_idle_hook." )
499
- static void attach_idle_hook (void (*fptr)(void ));
500
-
501
- /* * Attach a function to be called when a task is killed
502
- @param fptr pointer to the function to be called
503
-
504
- @note You may call this function from ISR context.
505
- @deprecated Static methods affecting system cause confusion. Replaced by Kernel::attach_thread_terminate_hook.
506
- */
507
- MBED_DEPRECATED_SINCE (" mbed-os-5.10" ,
508
- " Static methods affecting system cause confusion. "
509
- " Replaced by Kernel::attach_thread_terminate_hook." )
510
- static void attach_terminate_hook (void (*fptr)(osThreadId id));
511
-
512
393
/* * Thread destructor
513
394
*
514
395
* @note You cannot call this function from ISR context.
0 commit comments