Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pthreads

Which thread handles the signal?

is it necessary to call pthread_join()

c multithreading pthreads

How do I determine if a detached pthread is alive?

linux pthreads

Signal handling in pthreads

c pthreads signals

pthread sleep linux

c++ multithreading pthreads

valgrind memory leak errors when using pthread_create

When the main thread exits, do other threads also exit?

c multithreading pthreads

Cancelling a thread using pthread_cancel : good practice or bad

c++ linux pthreads

condition variable - why calling pthread_cond_signal() before calling pthread_cond_wait() is a logical error?

How to join a thread that is hanging on blocking IO?

Wake up thread blocked on accept() call

c sockets pthreads

What is the difference between pthread_self() and gettid()? Which one should I use?

linux pthreads affinity

Wait on multiple condition variables on Linux without unnecessary sleeps?

Is it good practice to lock a pthread mutex before destroying it? [duplicate]

c++ pthreads

How can I kill a pthread that is in an infinite loop, from outside that loop?

Should I use Helgrind or DRD for thread error detection?

c pthreads valgrind

Forcing a spurious-wake up in Java

When to use pthread_cancel and not pthread_kill?

pthreads

When to use pthread condition variables?

c linux pthreads

Why are threads called lightweight processes?

c multithreading pthreads