Skip to content

Instantly share code, notes, and snippets.

@xylifyx2
Last active July 7, 2016 08:26
Show Gist options
  • Save xylifyx2/5865113 to your computer and use it in GitHub Desktop.
Save xylifyx2/5865113 to your computer and use it in GitHub Desktop.
Use in -XX:OnOutOfMemoryError="killparent"
#include <stdio.h>
#include <unistd.h>
int main()
{
printf ("kill -9 <parent>\n");
kill (getppid(), 9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment