Lines Matching +full:a +full:- +full:facing
20 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
63 /// Prints a message to stderr.
65 /// Note that this runs from a signal handler. Calling write() is OK.
71 if (::write(STDERR_FILENO, message.c_str(), message.length()) == -1) { in err_write()
73 // specially considering that we are running within a signal handler. in err_write()
103 /// Installs a handler for a fatal signal representing a crash.
107 /// redelivered using the default handler to obtain a core dump.
109 /// \param signo The fatal signal for which to install a handler.
118 if (::sigaction(signo, &sa, NULL) == -1) { in install_one_crash_handler()
127 /// Returns a textual representation of an assertion type.
129 /// The textual representation is user facing.
132 /// reason, a special message is returned. The code cannot abort in such a
135 /// \return A textual description of the assertion type.
155 /// execution immediately by calling std::abort(). This ensures a coredump so
178 /// ensure that a signal handler for fatal crash signals is installed.
182 /// \param logfile_ The path to the log file to report during a crash.