ebpf-challenge/runforever.py

8 lines
130 B
Python
Raw Normal View History

2020-01-14 15:32:06 +01:00
import time
import os
print("Process ID: {}".format(os.getpid()))
print("Entering infinite loop ...")
while 1:
time.sleep(2)