diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2017-10-28 21:23:15 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2017-10-28 21:23:15 +0000 |
commit | 2717495d33a63467db8130f749e61927d7efafb9 (patch) | |
tree | 688cefd22c8da758c784be5fab4f657204bd669a /lib/libc/shlib_version | |
parent | 68e1a81f9f317988357765e77a1e8afe9c1e54a8 (diff) |
Change pthread_cleanup_{push,pop} to macros that store the cleanup info
on the stack instead of mallocing the list and move the APIs from libpthread
to libc so that they can be used inside libc.
Note: the standard was explicitly written to permit/support this
"macro with unmatched brace" style and it's what basically everyone
else already does. We xor the info with random cookies with a
random magic to detect/trip-up overwrites.
Major bump to both libc and libpthread due to the API move.
ok mpi@
Diffstat (limited to 'lib/libc/shlib_version')
-rw-r--r-- | lib/libc/shlib_version | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/shlib_version b/lib/libc/shlib_version index c15952cf991..589abf589f1 100644 --- a/lib/libc/shlib_version +++ b/lib/libc/shlib_version @@ -1,4 +1,4 @@ -major=90 +major=91 minor=0 # note: If changes were made to include/thread_private.h or if system # calls were added/changed then librthread/shlib_version also be updated. |