pthread_condattr_init(3) Library Functions Manual pthread_condattr_init(3) NOM pthread_condattr_init, pthread_condattr_destroy - Attributs de creation de conditions SYNOPSIS #include int pthread_condattr_init(pthread_condattr_t *attr); int pthread_condattr_destroy(pthread_condattr_t *attr); DESCRIPTION Condition attributes can be specified at condition creation time, by passing a condition attribute object as second argument to pthread_cond_init(3). Passing NULL is equivalent to passing a condition attribute object with all attributes set to their default values. L'implementation LinuxThreads ne prend en charge aucun attribut pour les conditions. Les fonctions relatives aux attributs de condition ne sont presentes que pour respecter les specifications POSIX. pthread_condattr_init() initializes the condition attribute object attr and fills it with default values for the attributes. pthread_condattr_destroy() destroys a condition attribute object, which must not be reused until it is reinitialized. Both functions do nothing in the LinuxThreads implementation. VALEUR RENVOYEE pthread_condattr_init() and pthread_condattr_destroy() always return 0. VOIR AUSSI pthread_cond_init(3) TRADUCTION La traduction francaise de cette page de manuel a ete creee par Gerard Delafond , Christophe Blaess , Thierry Vignaud , Alain Portal , Denis Barbier , Nicolas Francois , Florentin Duneau , Thomas Blein et David Prevot Cette traduction est une documentation libre ; veuillez vous reporter a la GNU General Public License version 3 concernant les conditions de copie et de distribution. Il n'y a aucune RESPONSABILITE LEGALE. Si vous decouvrez un bogue dans la traduction de cette page de manuel, veuillez envoyer un message a . Pages du manuel de Linux 6.18 17 mai 2025 pthread_condattr_init(3)