Skip to content

Instantly share code, notes, and snippets.

@drussell393
Created July 27, 2015 13:55
Show Gist options
  • Save drussell393/4bd50917396c80e0f4d2 to your computer and use it in GitHub Desktop.
Save drussell393/4bd50917396c80e0f4d2 to your computer and use it in GitHub Desktop.
#include <string.h> /* memset */
#include <unistd.h> /* close */
#include <stdlib.h>
int main()
{
while(1) {
void *m = malloc(1024*1024);
memset(m,0,1024*1024);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment