[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: strange scheduler log (again)




Ambrose Li <acli@www.mingpaoxpress.com>
> My scheduler log looks like this:
> 
> Synchronous startup completed, messages: 0 (0 skipped) recipients: 0
> ***********************************************************************
>         libc.so.4 (DLL Jump 4.6pl27) => /lib/libc.so.4.6.27
>         libc.so.4 (DLL Jump 4.6pl27) => /lib/libc.so.4.6.27
>         libc.so.4 (DLL Jump 4.6pl27) => /lib/libc.so.4.6.27
> 	...
>         libc.so.4 (DLL Jump 4.6pl27) => /lib/libc.so.4.6.27

For some reason you're exec()'ing a program and giving it a null argv.
(The above message is shown if **argv == '\0'.)

--Arnt