Skip to content

Instantly share code, notes, and snippets.

@salekseev
Forked from xylifyx2/killparent.c
Created October 16, 2015 18:55
Show Gist options
  • Select an option

  • Save salekseev/bb89b8d91c233d9c0ef5 to your computer and use it in GitHub Desktop.

Select an option

Save salekseev/bb89b8d91c233d9c0ef5 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