diff options
author | emaste <emaste@FreeBSD.org> | 2015-09-23 19:30:46 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2015-09-23 19:30:46 +0000 |
commit | 55f02506ea7eb19ec7021451ec2472775ff084e8 (patch) | |
tree | 954315bdf52c16eef172087ba8347154e5ccd343 /contrib/llvm/projects/libunwind/src/unwind_ext.h | |
parent | 4c00714c1f6bf09e56ad80712ea2818fd1d7ccd9 (diff) | |
parent | 205059572fbc61250bbbb42886379b6535aae27d (diff) | |
download | FreeBSD-src-55f02506ea7eb19ec7021451ec2472775ff084e8.zip FreeBSD-src-55f02506ea7eb19ec7021451ec2472775ff084e8.tar.gz |
Bring LLVM libunwind snapshot into contrib/llvm/projects
Diffstat (limited to 'contrib/llvm/projects/libunwind/src/unwind_ext.h')
-rw-r--r-- | contrib/llvm/projects/libunwind/src/unwind_ext.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/contrib/llvm/projects/libunwind/src/unwind_ext.h b/contrib/llvm/projects/libunwind/src/unwind_ext.h new file mode 100644 index 0000000..c40ce6a --- /dev/null +++ b/contrib/llvm/projects/libunwind/src/unwind_ext.h @@ -0,0 +1,37 @@ +//===-------------------------- unwind_ext.h ------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +// +// Extensions to unwind API. +// +//===----------------------------------------------------------------------===// + +#ifndef __UNWIND_EXT__ +#define __UNWIND_EXT__ + +#include "unwind.h" + +#ifdef __cplusplus +extern "C" { +#endif + +// These platform specific functions to get and set the top context are +// implemented elsewhere. + +extern struct _Unwind_FunctionContext * +__Unwind_SjLj_GetTopOfFunctionStack(); + +extern void +__Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext *fc); + +#ifdef __cplusplus +} +#endif + +#endif // __UNWIND_EXT__ + + |