* @brief Initialize a light-weight process arguments info structure * * @param[in,out] ai Pointer to the arguments info structure to initialize * * @return rt_err_t * - RT_EOK on successful initialization * - -RT_ENOMEM if memory allocation fails * * @see args_init */
| 282 | * @see args_init |
| 283 | */ |
| 284 | rt_err_t lwp_args_init(struct lwp_args_info *ai) |
| 285 | { |
| 286 | return args_init(ai, STR_BUF_DEFAULT_SIZE); |
| 287 | } |
| 288 | |
| 289 | /** |
| 290 | * @brief Detach a light-weight process arguments info structure |
no test coverage detected