blob: 56984f0a628a6a741034de2b2448f2c0c01d445c [file] [log] [blame]
Dan Albertefa37d12014-12-18 00:03:57 +00001//===--------------------- cxa_thread_atexit_test.cpp ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Eric Fiselier8b9be662016-10-31 14:14:04 +000010// UNSUPPORTED: libcxxabi-no-threads
Eric Fiseliercc8269f2015-02-03 23:50:47 +000011// REQUIRES: linux
Dan Albertefa37d12014-12-18 00:03:57 +000012
13#include <assert.h>
14#include <cxxabi.h>
15
16static bool AtexitImplCalled = false;
17
18extern "C" int __cxa_thread_atexit_impl(void (*dtor)(void *), void *obj,
19 void *dso_symbol) {
20 assert(dtor == reinterpret_cast<void (*)(void *)>(1));
21 assert(obj == reinterpret_cast<void *>(2));
22 assert(dso_symbol == reinterpret_cast<void *>(3));
23 AtexitImplCalled = true;
24 return 4;
25}
26
27int main() {
28 int RV = __cxxabiv1::__cxa_thread_atexit(
29 reinterpret_cast<void (*)(void *)>(1), reinterpret_cast<void *>(2),
30 reinterpret_cast<void *>(3));
Eric Fiselier933c4df2016-09-16 08:16:07 +000031 assert(RV == 4);
Dan Albertefa37d12014-12-18 00:03:57 +000032 assert(AtexitImplCalled);
33 return 0;
34}