Re: [Toybox] xvdaemon

2024-01-24 Thread Rob Landley
On 1/24/24 11:27, enh via Toybox wrote: > none of the three existing callers to this function does the chdir() mentioned > here... > ``` > // daemonize via vfork(). Does not chdir("/"), caller should do that first > // note: restarts process from command_main() > void xvdaemon(void) > ``` > was

[Toybox] xvdaemon

2024-01-24 Thread enh via Toybox
none of the three existing callers to this function does the chdir() mentioned here... ``` // daemonize via vfork(). Does not chdir("/"), caller should do that first // note: restarts process from command_main() void xvdaemon(void) ``` was there even a reason why you wanted that in the caller?