In HP-UX 11, I write a program and try to stratup it when system is boot up, I set it to run in run level 2 with sequence 900, but the system can't boot, it seems be block by my program.
If I modify this program, do nothing but just return, then system can boot normally. If I use fork() in this program, it will block boot procedure. Is there any limit in using function call when writing such a startup service?
How can I fix this problem?
Thank you
If I modify this program, do nothing but just return, then system can boot normally. If I use fork() in this program, it will block boot procedure. Is there any limit in using function call when writing such a startup service?
How can I fix this problem?
Thank you