2014-05-01 05:34:17 +08:00
|
|
|
// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
|
2014-04-23 15:01:02 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2014-12-05 23:42:17 +08:00
|
|
|
#include <errno.h>
|
2014-04-23 15:01:02 +08:00
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
|
|
int main() {
|
2014-12-05 23:42:17 +08:00
|
|
|
const size_t kLog2Size = 39;
|
2014-04-23 15:01:02 +08:00
|
|
|
const uintptr_t kLocation = 0x40ULL << kLog2Size;
|
|
|
|
void *p = mmap(
|
|
|
|
reinterpret_cast<void*>(kLocation),
|
|
|
|
1ULL << kLog2Size,
|
|
|
|
PROT_READ|PROT_WRITE,
|
|
|
|
MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE,
|
|
|
|
-1, 0);
|
2014-12-05 23:42:17 +08:00
|
|
|
fprintf(stderr, "DONE %p %d\n", p, errno);
|
2014-04-23 15:01:02 +08:00
|
|
|
return p == MAP_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: DONE
|