Bash-Linux.com : Le SHELL pour les nuls

  Actuellement 50 lignes de commande et 1472 man disponibles
login as: root
root@213.186.33.18's password:
Last login: Thu Feb 9 6:29:57 2012 from 38.107.179.229
[root@bash-linux ~] # echo "Bienvenue sur Bash-Linux.com"_
 Manuel des commandes UNIX (man) Version anglaise

Indiquez la fonction :

Man Pthread_exit en anglais

PTHREAD_EXIT(P) POSIX Programmer's Manual PTHREAD_EXIT(P)
 
NAME


pthread_exit - thread termination
 
SYNOPSIS


#include void pthread_exit(void *value_ptr);
 
DESCRIPTION


The pthread_exit() function shall terminate the calling thread and make the value value_ptr available to any successful join with the terminat- ing thread. Any cancellation cleanup handlers that have been pushed and not yet popped shall be popped in the reverse order that they were pushed and then executed. After all cancellation cleanup handlers have been executed, if the thread has any thread-specific data, appropriate destructor functions shall be called in an unspecified order. Thread termination does not release any application visible process resources, including, but not limited to, mutexes and file descriptors, nor does it perform any process-level cleanup actions, including, but not lim- ited to, calling any atexit() routines that may exist. An implicit call to pthread_exit() is made when a thread other than the thread in which main() was first invoked returns from the start routine that was used to create it. The function's return value shall serve as the thread's exit status. The behavior of pthread_exit() is undefined if called from a cancella- tion cleanup handler or destructor function that was invoked as a result of either an implicit or explicit call to pthread_exit(). After a thread has terminated, the result of access to local (auto) variables of the thread is undefined. Thus, references to local vari- ables of the exiting thread should not be used for the pthread_exit() value_ptr parameter value. The process shall exit with an exit status of 0 after the last thread has been terminated. The behavior shall be as if the implementation called exit() with a zero argument at thread termination time.
 
RETURN VALUE


The pthread_exit() function cannot return to its caller.
 
ERRORS


No errors are defined. The following sections are informative.
 
EXAMPLES


None.
 
APPLICATION USAGE


None.
 
RATIONALE


The normal mechanism by which a thread terminates is to return from the routine that was specified in the pthread_create() call that started it. The pthread_exit() function provides the capability for a thread to terminate without requiring a return from the start routine of that thread, thereby providing a function analogous to exit(). Regardless of the method of thread termination, any cancellation cleanup handlers that have been pushed and not yet popped are executed, and the destructors for any existing thread-specific data are executed. This volume of IEEE Std 1003.1-2001 requires that cancellation cleanup handlers be popped and called in order. After all cancellation cleanup handlers have been executed, thread-specific data destructors are called, in an unspecified order, for each item of thread-specific data that exists in the thread. This ordering is necessary because cancella- tion cleanup handlers may rely on thread-specific data. As the meaning of the status is determined by the application (except when the thread has been canceled, in which case it is PTHREAD_CAN- CELED), the implementation has no idea what an illegal status value is, which is why no address error checking is done.
 
FUTURE DIRECTIONS


None.
 
SEE ALSO


exit() , pthread_create() , pthread_join() , the Base Definitions vol- ume of IEEE Std 1003.1-2001,
 
COPYRIGHT


Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html . IEEE/The Open Group 2003 PTHREAD_EXIT(P)


 Dernières recherches
Man  en anglais Man pthread_exit en anglaisMan  en français Man pthread_exit en français
Man  en anglais Man posixoptions en anglaisMan  en français Man posixoptions en français
Man  en anglais Man exp en anglaisMan  en français Man exp en français
Man  en anglais Man truncate en anglaisMan  en français Man truncate en français
Man  en anglais Man wcwidth en anglaisMan  en français Man wcwidth en français
Man  en anglais Man capabilities en anglaisMan  en français Man capabilities en français
Man  en anglais Man iopl en anglaisMan  en français Man iopl en français
Man  en anglais Man settimeofday en anglaisMan  en français Man settimeofday en français
Man  en anglais Man getppid en anglaisMan  en français Man getppid en français
Man  en anglais Man env en anglaisMan  en français Man env en français
Man  en anglais Man labs en anglaisMan  en français Man labs en français
Man  en anglais Man mq_overview en anglaisMan  en français Man mq_overview en français
Man  en anglais Man sprintf en anglaisMan  en français Man sprintf en français
Man  en anglais Man gendsa en anglaisMan  en français Man gendsa en français
Man  en anglais Man sshd_config en anglaisMan  en français Man sshd_config en français

 Recherche

Dans ce moteur de recherche, vous pouvez taper directement votre besoin, en une phrase normale, humaine.
Exemple : vous cherchez comment remplacer un mot par un autre dans tous les fichiers d'un certain dossier. Vous pouvez écrire "Comment remplacer un mot par un autre dans tous les fichiers d'un dossier". Le moteur vous ramenera les résultats en fonction de leur pertinence.
Vous pouvez bien sûr ne chercher qu'un seul mot-clé, par exemple "find".
 Toutes les lignes de code
Par popularité
Par fonction
Recherche avancée
 Les logiciels SHELL/SSH
Putty
Astuces Bash
Faire du SHELL avec PHP!
 La doc officielle
Les man Linux en français
Les man Linux en anglais
 Proposer vos bash
Partagez vos lignes!
 Les requêtes
Déposer une requête
Voir/répondre à une requête
 Quelques sites interessants
Bons sites pour apprendre
 Rechercher