Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pthreads

Static pthreads mutex initialization

Check to see if a pthread mutex is locked or unlocked (After a thread has locked itself)

c pthreads deadlock mutex

Equivalent of SetThreadPriority on Linux (pthreads)

c++ c linux winapi pthreads

POSIX API call to list all the pthreads running in a process

c linux pthreads posix

CPU Affinity Masks (Putting Threads on different CPUs)

Threads and file descriptors

c linux pthreads

What are the POSIX cancellation points?

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?