11-18-05 10:53 PM
> I want the time of last fork() call in my program. How can I know this
> time?
You could record the time yourself:
last_fork_time = time(NULL);
pid = fork();
-- Lars
--
Lars Kellogg-Stedman <8273grkci8q8kgt@jetable.net>
This email address will expire on 2005-11-23.
[ Post a follow-up to this message ]
|