* @brief Destroy the user object lock for a lightweight process * * @param[in,out] lwp The lightweight process structure whose object lock needs destruction */
| 407 | * @param[in,out] lwp The lightweight process structure whose object lock needs destruction |
| 408 | */ |
| 409 | void lwp_user_object_lock_destroy(struct rt_lwp *lwp) |
| 410 | { |
| 411 | rt_mutex_detach(&lwp->object_mutex); |
| 412 | } |
| 413 | |
| 414 | /** |
| 415 | * @brief Lock the user object lock for a lightweight process |
no test coverage detected