https://github.com/jaredthecoder/debugging_c_notes
https://github.com/jaredthecoder/debugging_c_notes
Last synced: 3 months 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-01-06T05:22:17.672Z (about 1 year ago)
- Language: C
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- 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