| Author |
need information posix thread implementation
|
|
| upendra shinde 2004-01-23, 5:20 pm |
| hi!
iam working on "pthread library" as my final year project. iam
trying to implement Part of the functions provided in current pthread.
basically iam tying to implement functions in these groups:
Thread Manipulation
-------------------
create()
kill()
schedule()
thread Operation
-------------
dispatcher()
init()
shutdown()
Mutex Locks
-----------
mutexinit()
mutexlock()
mutextest()
mutexunlock()
Condition Variables
-------------------
conditioninit()
conditionwait()
conditionsignal()
conditionbroadcast()
Semaphores
----------
semainit()
semap()
semav()
iam also having problem with stack allocation for thread.
need a source code of a pthread library & information on stack
allocation and multithreading.
-----------------
upendra
| |
| Finnbarr P. Murphy 2004-01-23, 5:21 pm |
| upendra_shinde@rediffmail.com (upendra shinde) wrote in message news:<3e97c277.0312240726.6d814d77@posting.google.com>...
quote:
> iam also having problem with stack allocation for thread.
>
> need a source code of a pthread library & information on stack
> allocation and multithreading.
Have a look at the NGPT sources
www.ibm.com/developerworks/opensource/pthreads/
- Finnbarr
| |
| Finnbarr P. Murphy 2004-01-23, 5:33 pm |
| upendra_shinde@rediffmail.com (upendra shinde) wrote in message news:<3e97c277.0312240726.6d814d77@posting.google.com>...
quote:
> iam also having problem with stack allocation for thread.
>
> need a source code of a pthread library & information on stack
> allocation and multithreading.
Have a look at the NGPT sources
www.ibm.com/developerworks/opensource/pthreads/
- Finnbarr
|
|
|
|