summaryrefslogtreecommitdiff
path: root/test/safestack/pthread.c
blob: 416586ee13e745d12077d44a05307423623312c3 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// RUN: %clang_safestack %s -pthread -o %t
// RUN: %run %t

// XFAIL: darwin

// Test that pthreads receive their own unsafe stack.

#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include "utils.h"

static int ptr_test = 42;

void *t1_start(void *ptr)
{
  if (ptr != &ptr_test)
    abort();

  // safe stack
  int val = ptr_test * 5;

  // unsafe stack
  char buffer[8096]; // two pages
  memset(buffer, val, sizeof (buffer));
  break_optimization(buffer);

  return ptr;
}

int main(int argc, char **argv)
{
  pthread_t t1;
  void *ptr = NULL;
  if (pthread_create(&t1, NULL, t1_start, &ptr_test))
    abort();
  if (pthread_join(t1, &ptr))
    abort();
  if (ptr != &ptr_test)
    abort();
  return 0;
}