Timer Implementation in Pth

2004-06-22 Thread Vinu V
Hi, My requirement is to have a timer implementation using Pth library. The call shown below causes the callback func to be called at the specified timeout: - --- main_func()

Re: Timer Implementation in Pth

2004-06-22 Thread Marc Laue
On Tuesday 22 June 2004 14:22, Vinu V wrote: Hi, My requirement is to have a timer implementation using Pth library. The call shown below causes the callback func to be called at the specified timeout: --- --

RE: Timer Implementation in Pth

2004-06-22 Thread Naveen K
Wouldn't it be a waste of resource of you were to create same number of Threads as the Timers required. Instead if we had a functionality within pth available that would be the best approach or use the underlying Target OS Timer functionality to get the same functionality. Has there anyone used

RE: Timer Implementation in Pth

2004-06-22 Thread David Schwartz
Wouldn't it be a waste of resource of you were to create same number of Threads as the Timers required. Yes, it would. Instead if we had a functionality within pth available that would be the best approach or use the underlying Target OS Timer functionality to get the same