The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
19 views

Can two Threads use same Thread Procedure? [closed]

Is it possible for two threads to use a single function "ThreadProc" as its thread procedure when CreateThread() is used. ...
-1
votes
0answers
9 views

How to implement HTTP /1.1Keep-alive feature in my web server [closed]

I am developing my web server. But I don't know how to add HTTP/1.1 Keep alive feature in my code. My task is I have to implement file-based multi-threaded web server with thread-pooling ...
1
vote
1answer
64 views

Process state in multi threaded process

What would be the process state in a multi threaded process, in which threads are in different states (running, waiting, blocked etc)
4
votes
1answer
239 views

How are threads implemented in different OSs?

I was reading Linux Kernel Development by Robert Love, where I came across this Linux takes an interesting approach to thread support: It does not differentiate between threads and normal ...