logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

_U_dyn_cancel -- cancel unwind-info for dynamically generated code

Author

       David Mosberger-Tang
       Email: dmosberger@gmail.com
       WWW: http://www.nongnu.org/libunwind/.

Programming Library                              16 August 2007                                 _U_DYN_CANCEL(3)

Description

       The  _U_dyn_cancel()  routine  cancels  the  registration  of the unwind-info for a dynamically generated
       procedure. Argument di is the pointer to the unw_dyn_info_t  structure  that  describes  the  procedure's
       unwind-info.

       The  _U_dyn_cancel() routine is guaranteed to execute in constant time (in the absence of contention from
       concurrent calls to _U_dyn_register() or _U_dyn_cancel()).

Name

       _U_dyn_cancel -- cancel unwind-info for dynamically generated code

See Also

libunwind-dynamic(3), _U_dyn_register(3)

Synopsis

       #include <libunwind.h>

       void _U_dyn_cancel(unw_dyn_info_t *di);

Thread And Signal Safety

       _U_dyn_cancel() is thread-safe but not safe to use from a signal handler.

See Also