This may betray a lack of understanding of how jails work under the hood. Here is my question:
If I am creating a jail via system calls in a c program, do I need to add one of
Put in other words: as I understand it right now, when creating a jail using jail(8), you have to sort of give jail(8) a clue about the context of execution. But if it's a syscall, then it is alrady executing and doesn't need a prompt?
Off? Way off?
All wisdom and knowledge deeply appreciated.
All relevant man pages have already been consulted, this isn't specified, perhaps because the answer should be obvious.
If I am creating a jail via system calls in a c program, do I need to add one of
persist
, exec
, or command
, or is it implied that the jail is executing as part of the thread taken up by the c program process (please forgive me if I am butchering these concepts)?Put in other words: as I understand it right now, when creating a jail using jail(8), you have to sort of give jail(8) a clue about the context of execution. But if it's a syscall, then it is alrady executing and doesn't need a prompt?
Off? Way off?
All wisdom and knowledge deeply appreciated.
All relevant man pages have already been consulted, this isn't specified, perhaps because the answer should be obvious.