| 1530 | } |
| 1531 | |
| 1532 | char * |
| 1533 | exec_args_get_begin_envv(struct image_args *args) |
| 1534 | { |
| 1535 | |
| 1536 | KASSERT(args->endp != NULL, ("endp not initialized")); |
| 1537 | |
| 1538 | if (args->envc > 0) |
| 1539 | return (args->begin_envv); |
| 1540 | return (args->endp); |
| 1541 | } |
| 1542 | |
| 1543 | void |
| 1544 | exec_stackgap(struct image_params *imgp, uintptr_t *dp) |
no outgoing calls
no test coverage detected