https://github.com/jaredthecoder/debugging_c_notes
https://github.com/jaredthecoder/debugging_c_notes
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jaredthecoder/debugging_c_notes
- Owner: jaredthecoder
- Created: 2018-09-13T18:51:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-13T19:07:39.000Z (over 7 years ago)
- Last Synced: 2025-11-17T09:24:01.533Z (6 months ago)
- Language: C
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Debugging Notes
---
ThreadSanitizer:
- Compile with `gcc -fsanitize=thread -pie -fPIE -g test.c`
Memory leaks or use after free:
- Can use Valgrind or Google's sanitizers