aboutsummaryrefslogtreecommitdiffstats
path: root/liberror_end.3
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2019-04-13 22:00:04 +0200
committerMattias Andrée <maandree@kth.se>2019-04-13 22:00:04 +0200
commit05ad06600b712a29bc99a65ae89f38d4d8f30371 (patch)
tree1d7d8a6ac3b83c0150635a2e81dd51d4e648e4b3 /liberror_end.3
parentDocument fields for error details (diff)
downloadliberror-05ad06600b712a29bc99a65ae89f38d4d8f30371.tar.gz
liberror-05ad06600b712a29bc99a65ae89f38d4d8f30371.tar.bz2
liberror-05ad06600b712a29bc99a65ae89f38d4d8f30371.tar.xz
Add liberror_start and liberror_end
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'liberror_end.3')
-rw-r--r--liberror_end.350
1 files changed, 50 insertions, 0 deletions
diff --git a/liberror_end.3 b/liberror_end.3
new file mode 100644
index 0000000..db36d56
--- /dev/null
+++ b/liberror_end.3
@@ -0,0 +1,50 @@
+.TH LIBERROR_END 3 2019-04-13 liberror
+.SH NAME
+liberror_end \- restore the thread's error state
+.SH SYNOPSIS
+.nf
+#include <liberror.h>
+
+void liberror_end(const struct liberror_state *\fIstate\fP);
+.fi
+.PP
+Link with
+.IR \-lerror .
+.SH DESCRIPTION
+The
+.BR liberror_end ()
+function restores the state saved and cleared
+by the
+.BR liberror_stasrt ()
+function.
+.PP
+Asynchronously called functions such as single
+handlers shall call this function the last thing
+they do before returning.
+.SH RETURN VALUE
+None.
+.SH ERRORS
+None.
+.SH EXAMPLES
+None.
+.SH APPLICATION USAGE
+None.
+.SH RATIONALE
+None.
+.SH FUTURE DIRECTIONS
+None.
+.SH NOTES
+None.
+.SH SEE ALSO
+.BR liberror (7),
+.BR liberror.h (0),
+.BR liberror_copy_error (3),
+.BR liberror_free_error (3),
+.BR liberror_get_error (3),
+.BR liberror_print_bactrace (3),
+.BR liberror_print_error (3),
+.BR liberror_reset_error (3),
+.BR liberror_save_backtrace (3),
+.BR liberror_set_error (3),
+.BR liberror_set_error_errno (3),
+.BR liberror_start (3)