https://github.com/msiddhu/function_call_tracer
https://github.com/msiddhu/function_call_tracer
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/msiddhu/function_call_tracer
- Owner: msiddhu
- Created: 2024-05-05T21:33:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-07T21:12:51.000Z (over 1 year ago)
- Last Synced: 2025-02-10T02:24:59.711Z (11 months ago)
- Language: C++
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
g++ -O0 -g -shared -fPIC -rdynamic hooks.cpp -o libhooks.so -ldl
g++ -O0 -g -finstrument-functions -rdynamic -o myprog2 myprog2.cpp
LD_PRELOAD=./libhooks.so ./myprog2