mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-04 12:52:15 +00:00
Increase the size of private thread flags so that the test for a
thread trying to call pthread_exit() from a cleanup handler actually works. Submitted by: David Leonard <david.leonard@csee.uq.edu.au> OpenBSD
This commit is contained in:
parent
118537f287
commit
0883c4c31b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42681
@ -447,7 +447,7 @@ struct pthread {
|
||||
int signo;
|
||||
|
||||
/* Miscellaneous data. */
|
||||
char flags;
|
||||
int flags;
|
||||
#define PTHREAD_EXITING 0x0100
|
||||
char pthread_priority;
|
||||
void *ret;
|
||||
|
@ -447,7 +447,7 @@ struct pthread {
|
||||
int signo;
|
||||
|
||||
/* Miscellaneous data. */
|
||||
char flags;
|
||||
int flags;
|
||||
#define PTHREAD_EXITING 0x0100
|
||||
char pthread_priority;
|
||||
void *ret;
|
||||
|
@ -447,7 +447,7 @@ struct pthread {
|
||||
int signo;
|
||||
|
||||
/* Miscellaneous data. */
|
||||
char flags;
|
||||
int flags;
|
||||
#define PTHREAD_EXITING 0x0100
|
||||
char pthread_priority;
|
||||
void *ret;
|
||||
|
Loading…
Reference in New Issue
Block a user