├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── call_fprintf.c └── target.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | call-fprintf 3 | core.* 4 | target 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklitzke/ptrace-call-userspace/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklitzke/ptrace-call-userspace/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklitzke/ptrace-call-userspace/HEAD/README.md -------------------------------------------------------------------------------- /call_fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklitzke/ptrace-call-userspace/HEAD/call_fprintf.c -------------------------------------------------------------------------------- /target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklitzke/ptrace-call-userspace/HEAD/target.c --------------------------------------------------------------------------------