Reputation: 3134
i would like to implement a thread framework using simple c and timers....can anyone help me out...by providing some sample libraries or material...
Upvotes: 1
Views: 176
Reputation: 134255
It may help to have a look at pthreads, a POSIX standard for threads:
Pthreads are defined as a set of C language programming types and procedure calls, implemented with a pthread.h header/include file and a thread library - though this library may be part of another library, such as libc, in some implementations.
Upvotes: 1