diff --git a/python/syscall-inf-loop.py b/python/syscall-inf-loop.py new file mode 100755 index 0000000..6d0c89e --- /dev/null +++ b/python/syscall-inf-loop.py @@ -0,0 +1,6 @@ +#!/usr/bin/python3 + +import os + +while True: + os.getppid() \ No newline at end of file