-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathexit.rs
59 lines (55 loc) · 2.08 KB
/
exit.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use crate::backend;
/// `EXIT_SUCCESS` for use with [`exit`] or [`std::process::exit`].
///
/// # References
/// - [POSIX]
/// - [Linux]
///
/// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html
/// [Linux]: https://man7.org/linux/man-pages/man3/exit.3.html
pub const EXIT_SUCCESS: i32 = backend::c::EXIT_SUCCESS;
/// `EXIT_FAILURE` for use with [`exit`] or [`std::process::exit`].
///
/// # References
/// - [POSIX]
/// - [Linux]
///
/// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html
/// [Linux]: https://man7.org/linux/man-pages/man3/exit.3.html
pub const EXIT_FAILURE: i32 = backend::c::EXIT_FAILURE;
/// The exit status used by a process terminated with a [`Signal::Abort`]
/// signal.
///
/// # References
/// - [Linux]
///
/// [Linux]: https://tldp.org/LDP/abs/html/exitcodes.html
/// [`Signal::Abort`]: crate::process::Signal::Abort
#[cfg(not(any(target_os = "espidf", target_os = "wasi")))]
pub const EXIT_SIGNALED_SIGABRT: i32 = backend::c::EXIT_SIGNALED_SIGABRT;
/// Immediately exits the process. Exiting via this function does not unwind the
/// stack and does not call any further user code. This behavior is similar to
/// the POSIX/C `_Exit` and `_exit` functions.
///
/// Notably, this function does:
/// - *Not* flush any buffers, such as Rust or C standard output or files.
/// - *Not* call any destructors, neither in the form of stack unwinding, nor
/// any global destructors.
/// - *Not* call functions registered with [`atexit`] or [`at_quick_exit`]
///
/// In general, most code should call [`std::process::exit`] instead, if it is
/// available.
///
/// # References
/// - [POSIX]
/// - [Linux]
///
/// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdlib.h.html
/// [Linux]: https://www.man7.org/linux/man-pages/man2/exit.2.html
/// [`atexit`]: https://www.man7.org/linux/man-pages/man3/atexit.3.html
/// [`at_quick_exit`]: https://en.cppreference.com/w/c/program/at_quick_exit
#[doc(alias = "_exit")]
#[inline]
pub fn immediate_exit(status: i32) -> ! {
backend::process::syscalls::_exit(status);
}