Skip to content

Instantly share code, notes, and snippets.

View Red-Portal's full-sized avatar
🤤

Kyurae Kim Red-Portal

🤤
  • University of Pennsylvania
  • Philadelphia, United States
View GitHub Profile
@Red-Portal
Red-Portal / sh
Last active August 25, 2019 14:28
GDB stress test
set pagination off
while 1
printf "starting program\n"
run
if $_siginfo
printf "Received signal %d, stopping\n", $_siginfo.si_signo
loop_break
else
printf "program exited\n"
end