Lines Matching full:thread_id

371 /* / \param[in]     thread_id     thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
373 const char *osThreadGetName(osThreadId_t thread_id);
380 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
382 osThreadState_t osThreadGetState(osThreadId_t thread_id);
385 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
387 uint32_t osThreadGetStackSize(osThreadId_t thread_id);
390 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
392 uint32_t osThreadGetStackSpace(osThreadId_t thread_id);
395 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
398 osStatus_t osThreadSetPriority(osThreadId_t thread_id, osPriority_t priority);
401 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
403 osPriority_t osThreadGetPriority(osThreadId_t thread_id);
410 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
412 osStatus_t osThreadSuspend(osThreadId_t thread_id);
415 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
417 osStatus_t osThreadResume(osThreadId_t thread_id);
420 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
422 osStatus_t osThreadDetach(osThreadId_t thread_id);
425 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
427 osStatus_t osThreadJoin(osThreadId_t thread_id);
433 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
435 osStatus_t osThreadTerminate(osThreadId_t thread_id);
451 /* / \param[in] thread_id thread ID obtained by \ref osThreadNew or \ref osThreadGetId. */
454 uint32_t osThreadFlagsSet(osThreadId_t thread_id, uint32_t flags);