Re: Timer in C
- From: fred.l.kleinschmidt@xxxxxxxxxx
- Date: Mon, 28 Apr 2008 14:55:06 -0700 (PDT)
On Apr 28, 7:41 am, Alexander Mahone <salvodanilogiuffr...@xxxxxxxxx>
wrote:
Hello, I'm referring to a thread that I started some days ago on
comp.lang.c:http://groups.google.it/group/comp.lang.c/browse_thread/thread/f99fda....
I read various documentation on the Internet, but I think neither
ualarm() or setitimer() satisfy me completely. What I need to do, in
fact, is create a series of different timers inside a process, like
timer objects (of course, not true objects, but conceptually it's like
an object), each one referrable, with some kind of reference (a
pointer). Then, under certain conditions, I need to reset one or more
of them (that's why I need some way to refer to every single timer
specificly), to prevent them sending the SIGALARM (any other kind of
signal they might send), because otherwise I line in the console is
written with 'puts("Alarm: The timer x has expired")' or printf(), at
each expiration of each timer.
From what I've read, both ualarm() and setitimer() (the first is
actually based on the second) allows you to manage one single global
timer, the one of the caller process...
So, in my opinion (correct me if I'm wrong, my knownledge of C is
quite limited) the only 2 ways to do this would be:
1 - Create a series of threads, one for each timer I want to create,
and inside each thread call ualarm(), to set the per-thread timer...Or
maybe I'd need to create child processes, instead of threads?
2 - Use a series of timer_create(), without the need to create any per-
timer thread...
Is there a simpler and more lightweight way to do this?
Thanks a lot
What does the program do while waiting for the timers to fire?
Is this a GUI program?
This is very easy to do if you are using the Xt toolkit.
--
Fred Kleinschmidt
.
- References:
- Timer in C
- From: Alexander Mahone
- Timer in C
- Prev by Date: Re: sharing memory map between processes (same parent)
- Next by Date: Re: TCP connect in Non Blocking Mode
- Previous by thread: Re: Timer in C
- Next by thread: Re: Timer in C
- Index(es):
Relevant Pages
|