+2015-06-24 Roland McGrath <roland@hack.frob.com>
+
+ * nptl/descr.h (struct pthread): Change type of fields cancelhandling
+ and parent_cancelhandling from 'int' to 'unsigned int'.
+
2015-06-24 Roland McGrath <roland@hack.frob.com>
* nptl/descr.h (struct pthread): Change type of field setxid_futex
#define HAVE_CLEANUP_JMP_BUF
/* Flags determining processing of cancellation. */
- int cancelhandling;
+ unsigned int cancelhandling;
/* Bit set if cancellation is disabled. */
#define CANCELSTATE_BIT 0
#define CANCELSTATE_BITMASK (0x01 << CANCELSTATE_BIT)
/* The parent's cancel handling at the time of the pthread_create
call. This might be needed to undo the effects of a cancellation. */
- int parent_cancelhandling;
+ unsigned int parent_cancelhandling;
/* Lock to synchronize access to the descriptor. */
int lock;