(Illustration by Gaich Muramatsu)
On Thu, Mar 31, 2005 at 02:03:45PM -0800, Steven Jacobs wrote: > stat64("/vice/misc", {st_mode=S_IFDIR|0755, > st_size=4096, ...}) = 0 > chdir("/vice/misc") = 0 > clone(child_stack=0, ^^^^^ > flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, > child_tidptr=0xb7f4f708) = 5189 > exit_group(0) = ? I think that at that point the process forks into the background to disconnects itself from the console. You can check if it is running with 'ps auxwww | grep updatesrv', or use "strace -f updatesrv" to make sure that strace traces the child process after the fork. JanReceived on 2005-04-01 15:46:34