Skip to content

Add defensive programming resources #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -1493,6 +1493,13 @@ See also: [RR](#rr), [WinDbg - Time Travel Debugging](https://github.com/MattPD/
- https://maskray.me/blog/2020-11-08-stack-unwinding
- Unwind specification draft for GNU/Linux/ia64 (extends the exception ABI) - https://www.kernel.org/pub/linux/devel/gcc/unwind/

## Defensive Programming
- Libassert: The most over-engineered C++ assertion library
- Provides detailed information on assertion failures and decomposes assertion expressions
- https://github.com/jeremy-rifkin/libassert
- Bloomberg's bsls_assert: Build-specific, runtime-configurable assertion macros
- https://bloomberg.github.io/bde-resources/doxygen/bde_api_prod/group__bsls__assert.html

---

# Talks
Expand Down