blob: b9a85902d1179fcd6ec4d70d5ea90e0d144299bb [file] [log] [blame]
//===-- a.c -----------------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <unistd.h>
__thread int var_shared = 33;
void shared_check()
{
var_shared *= 2;
usleep(1); // shared thread breakpoint
}