About 45,200 results
Open links in new tab
  1. pthreads (7) — Linux manual page

    pthreads(7) Miscellaneous Information Manual pthreads(7) NAME top pthreads - POSIX threads DESCRIPTION top POSIX.1 specifies a set of interfaces (functions, header files) for threaded …

  2. Thread Management Functions in C - GeeksforGeeks

    Jul 11, 2025 · In C language, POSIX <pthread.h> standard API (Application program Interface) for all thread related functions. It allows us to create multiple threads for concurrent process flows. To …

  3. pthreads - Wikipedia

    Aug 30, 2010 · pthreads In computing, POSIX Threads, commonly known as pthreads (after its header <pthread.h>), is an execution model that exists independently from a programming language, as well …

  4. Multithreaded Programming (POSIX pthreads Tutorial)

    The pthread_mutex_init() function requires a pthread_mutex_t variable to operate on as the first argument. Attributes for the mutex can be given through the second parameter.

  5. Mastering Linux Pthreads: A Comprehensive Guide - linuxvox.com

    Jan 16, 2026 · In the world of Linux programming, multi-threading is a powerful technique that allows a program to perform multiple tasks concurrently. One of the most popular ways to implement multi …

  6. Introduction to PThreads - Tamerlan Gudabayev

    Feb 28, 2022 · It is important to understand that although pthread_cancel() returns immediately and can terminate a thread prematurely, it cannot be called a means of forcing threads to terminate. So …

  7. pthreads - he

    Dec 21, 2020 · pthreads PTHREADS(7) Linux Programmer's Manual PTHREADS(7) NAME pthreads - POSIX threads DESCRIPTION POSIX.1 specifies a set of interfaces (functions, header files) for …

  8. GNU Pth - The GNU Portable Threads

    This is the Pth thread-related equivalent of POSIX sigprocmask (2) respectively pthread_sigmask (3). The arguments how, set and oset directly relate to sigprocmask (2), because Pth internally just uses …

  9. <pthread.h> - Open Group

    The pthread_attr_t, pthread_cond_t, pthread_condattr_t, pthread_key_t, pthread_mutex_t, pthread_mutexattr_t, pthread_once_t, pthread_rwlock_t, pthread_rwlockattr_t and pthread_t types …

  10. The pthread_join() subroutine blocks the calling thread until the specified threadId thread terminates The programmer is able to obtain the target thread's termination return status if specified through …