summaryrefslogtreecommitdiffstats
path: root/test/test-segfault.c
blob: 94b42749c39b61d428d835e1074290288b6e1b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* This is simply a process that segfaults */
#include <signal.h>

#include <sys/time.h>
#include <sys/resource.h>

int
main (int argc, char **argv)
{
  char *p;  

  struct rlimit r = { 0, };
  
  getrlimit (RLIMIT_CORE, &r);
  r.rlim_cur = 0;
  setrlimit (RLIMIT_CORE, &r);
  
  raise (SIGSEGV);

  p = 0;
  *p = 'a';
  
  return 0;
}