aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/quick_exit.3
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
* C++17 requires quick_exit(3) to be async-signal safe.Konstantin Belousov2017-11-041-1/+12
| | | | | | | | | | Make it safe, and update man page with the useful information. Sponsored by: The FreeBSD Foundation MFC after: 1 week Notes: svn path=/head/; revision=325389
* quick_exit(3): delete trailing whitespace in licensing tortEnji Cooper2017-05-231-3/+3
| | | | | | | | | Reported by: make manlint MFC after: 2 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=318710
* Fix quick_exit(3) manual page to match reality - the status was missing.Edward Tomasz Napierala2014-12-131-2/+2
| | | | | | | | MFC after: 1 month Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=275752
* Update the 'C1x draft' reference to '.St -isoC-2011' mdoc macro.Sergey Kandaurov2012-07-261-1/+2
| | | | | | | | Reviewed by: theraven MFC after: 1 week Notes: svn path=/head/; revision=238802
* Some fixes to the man pages for [at_]quick_exit(3)David Chisnall2011-12-071-7/+9
| | | | | | | | Reviewed by: pluknet Approved by: dim (mentor) Notes: svn path=/head/; revision=228329
* Implement quick_exit() / at_quick_exit() from C++11 / C1x. Also add aDavid Chisnall2011-12-071-0/+55
__noreturn macro and modify the other exiting functions to use it. The __noreturn macro, unlike __dead2, must be used BEFORE the function. This is in line with the C and C++ specifications that place _Noreturn (c1x) and [[noreturn]] (C++11) in front of the functions. As with __dead2, this macro falls back to using the GCC attribute. Unfortunately, clang currently sets the same value for the C version macro in C99 and C1x modes, so these functions are hidden by default. At some point before 10.0, I need to go through the headers and clean up the C1x / C++11 visibility. Reviewed by: brooks (mentor) Notes: svn path=/head/; revision=228322