* Allocate temporary demand-paged, zero-filled memory for the file name, * argument, and environment strings. */
| 1397 | * argument, and environment strings. |
| 1398 | */ |
| 1399 | int |
| 1400 | exec_alloc_args(struct image_args *args) |
| 1401 | { |
| 1402 | |
| 1403 | args->buf = (char *)exec_alloc_args_kva(&args->bufkva); |
| 1404 | return (0); |
| 1405 | } |
| 1406 | |
| 1407 | void |
| 1408 | exec_free_args(struct image_args *args) |
no test coverage detected