Re: pthread problem

2002-10-07 Thread Marc Laue
The pth environment is a cooperative model. This means that there is only one real thread in which all the others are emulated. If one of the pth-threads no longer needs the cpu, for example because it is put to sleep for some time, it has to return the control to the pth subsystem which will

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: --- --