Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: third_party/libc++abi/src/Unwind/unwind_ext.h

Issue 75213003: Add libc++ and libc++abi to third-party. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 //===-------------------------- unwind_ext.h ------------------------------===//
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 // Extensions to unwind API.
10 //
11 //===----------------------------------------------------------------------===//
12
13 #ifndef __UNWIND_EXT__
14 #define __UNWIND_EXT__
15
16 #include "unwind.h"
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 // These platform specific functions to get and set the top context are
23 // implemented elsewhere.
24
25 extern struct _Unwind_FunctionContext *
26 __Unwind_SjLj_GetTopOfFunctionStack();
27
28 extern void
29 __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext *fc);
30
31 #ifdef __cplusplus
32 }
33 #endif
34
35 #endif // __UNWIND_EXT__
36
37
OLDNEW
« no previous file with comments | « third_party/libc++abi/src/Unwind/libunwind_ext.h ('k') | third_party/libc++abi/src/abort_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698