* @brief Detach a light-weight process arguments info structure * * @param[in,out] ai Pointer to the arguments info structure to detach */
| 292 | * @param[in,out] ai Pointer to the arguments info structure to detach |
| 293 | */ |
| 294 | void lwp_args_detach(struct lwp_args_info *ai) |
| 295 | { |
| 296 | _strvec_detach(&ai->argv); |
| 297 | _strvec_detach(&ai->envp); |
| 298 | rt_free(ai->str_buf); |
| 299 | } |
| 300 | |
| 301 | #ifdef ARCH_MM_MMU |
| 302 | /** |
no test coverage detected