1_U_DYN_CANCEL(3) Programming Library _U_DYN_CANCEL(3)
2
3
4
6 _U_dyn_cancel -- cancel unwind-info for dynamically generated code
7
9 #include <libunwind.h>
10
11 void _U_dyn_cancel(unw_dyn_info_t *di);
12
14 The _U_dyn_cancel() routine cancels the registration of the unwind-info
15 for a dynamically generated procedure. Argument di is the pointer to
16 the unw_dyn_info_t structure that describes the procedure's
17 unwind-info.
18
19 The _U_dyn_cancel() routine is guaranteed to execute in constant time
20 (in the absence of contention from concurrent calls to _U_dyn_regis‐
21 ter() or _U_dyn_cancel()).
22
24 _U_dyn_cancel() is thread-safe but not safe to use from a signal han‐
25 dler.
26
28 libunwind-dynamic(3), _U_dyn_register(3)
29
31 David Mosberger-Tang
32 Email: dmosberger@gmail.com
33 WWW: http://www.nongnu.org/libunwind/.
34
35
36
37Programming Library 16 August 2007 _U_DYN_CANCEL(3)