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: Mon Feb 13 6:21:18 2012 from 38.107.179.226
[root@bash-linux ~] # echo "Bienvenue sur Bash-Linux.com"_
 Manuel des commandes UNIX (man) Version anglaise

Indiquez la fonction :

Man Pthread_setcanceltype en anglais

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


pthread_setcancelstate, pthread_setcanceltype, pthread_testcancel - set cancelability state
 
SYNOPSIS


#include int pthread_setcancelstate(int state, int *oldstate); int pthread_setcanceltype(int type, int *oldtype); void pthread_testcancel(void);
 
DESCRIPTION


The pthread_setcancelstate() function shall atomically both set the calling thread's cancelability state to the indicated state and return the previous cancelability state at the location referenced by old- state. Legal values for state are PTHREAD_CANCEL_ENABLE and PTHREAD_CANCEL_DISABLE. The pthread_setcanceltype() function shall atomically both set the calling thread's cancelability type to the indicated type and return the previous cancelability type at the location referenced by oldtype. Legal values for type are PTHREAD_CANCEL_DEFERRED and PTHREAD_CAN- CEL_ASYNCHRONOUS. The cancelability state and type of any newly created threads, includ- ing the thread in which main() was first invoked, shall be PTHREAD_CAN- CEL_ENABLE and PTHREAD_CANCEL_DEFERRED respectively. The pthread_testcancel() function shall create a cancellation point in the calling thread. The pthread_testcancel() function shall have no effect if cancelability is disabled.
 
RETURN VALUE


If successful, the pthread_setcancelstate() and pthread_setcanceltype() functions shall return zero; otherwise, an error number shall be returned to indicate the error.
 
ERRORS


The pthread_setcancelstate() function may fail if: EINVAL The specified state is not PTHREAD_CANCEL_ENABLE or PTHREAD_CAN- CEL_DISABLE. The pthread_setcanceltype() function may fail if: EINVAL The specified type is not PTHREAD_CANCEL_DEFERRED or PTHREAD_CANCEL_ASYNCHRONOUS. These functions shall not return an error code of [EINTR]. The following sections are informative.
 
EXAMPLES


None.
 
APPLICATION USAGE


None.
 
RATIONALE


The pthread_setcancelstate() and pthread_setcanceltype() functions con- trol the points at which a thread may be asynchronously canceled. For cancellation control to be usable in modular fashion, some rules need to be followed. An object can be considered to be a generalization of a procedure. It is a set of procedures and global variables written as a unit and called by clients not known by the object. Objects may depend on other objects. First, cancelability should only be disabled on entry to an object, never explicitly enabled. On exit from an object, the cancelability state should always be restored to its value on entry to the object. This follows from a modularity argument: if the client of an object (or the client of an object that uses that object) has disabled cancelabil- ity, it is because the client does not want to be concerned about cleaning up if the thread is canceled while executing some sequence of actions. If an object is called in such a state and it enables cancela- bility and a cancellation request is pending for that thread, then the thread is canceled, contrary to the wish of the client that disabled. Second, the cancelability type may be explicitly set to either deferred or asynchronous upon entry to an object. But as with the cancelability state, on exit from an object the cancelability type should always be restored to its value on entry to the object. Finally, only functions that are cancel-safe may be called from a thread that is asynchronously cancelable.
 
FUTURE DIRECTIONS


None.
 
SEE ALSO


pthread_cancel() , the Base Definitions volume 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_SETCANCELSTATE(P)


 Dernières recherches
Man  en anglais Man pthread_setcanceltype en anglaisMan  en français Man pthread_setcanceltype en français
Man  en anglais Man sem_overview en anglaisMan  en français Man sem_overview en français
Man  en anglais Man sigprocmask en anglaisMan  en français Man sigprocmask en français
Man  en anglais Man addseverity en anglaisMan  en français Man addseverity en français
Man  en anglais Man mq_overview en anglaisMan  en français Man mq_overview en français
Man  en anglais Man setpriority en anglaisMan  en français Man setpriority en français
Man  en anglais Man pthread_cleanup_push en anglaisMan  en français Man pthread_cleanup_push en français
Man  en anglais Man sigismember en anglaisMan  en français Man sigismember en français
Man  en anglais Man sigemptyset en anglaisMan  en français Man sigemptyset en français
Man  en anglais Man mysql_zap en anglaisMan  en français Man mysql_zap en français
Man  en anglais Man getgrgid en anglaisMan  en français Man getgrgid en français
Man  en anglais Man strncasecmp en anglaisMan  en français Man strncasecmp en français
Man  en anglais Man getpagesize en anglaisMan  en français Man getpagesize en français
Man  en anglais Man getsockname en anglaisMan  en français Man getsockname en français
Man  en anglais Man sigaltstack en anglaisMan  en français Man sigaltstack 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