Deleted Added
full compact
cxxabi.h (232922) cxxabi.h (253145)
1/*
2 * Copyright 2012 David Chisnall. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to
6 * deal in the Software without restriction, including without limitation the
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 * sell copies of the Software, and to permit persons to whom the Software is

--- 179 unchanged lines hidden (view full) ---

188 */
189__cxa_eh_globals *__cxa_get_globals(void);
190/**
191 * Version of __cxa_get_globals() assuming that __cxa_get_globals() has already
192 * been called at least once by this thread.
193 */
194__cxa_eh_globals *__cxa_get_globals_fast(void);
195
1/*
2 * Copyright 2012 David Chisnall. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to
6 * deal in the Software without restriction, including without limitation the
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 * sell copies of the Software, and to permit persons to whom the Software is

--- 179 unchanged lines hidden (view full) ---

188 */
189__cxa_eh_globals *__cxa_get_globals(void);
190/**
191 * Version of __cxa_get_globals() assuming that __cxa_get_globals() has already
192 * been called at least once by this thread.
193 */
194__cxa_eh_globals *__cxa_get_globals_fast(void);
195
196std::type_info * __cxa_current_exception_type();
197
196/**
197 * Throws an exception returned by __cxa_current_primary_exception(). This
198 * exception may have been caught in another thread.
199 */
200void __cxa_rethrow_primary_exception(void* thrown_exception);
201/**
202 * Returns the current exception in a form that can be stored in an
203 * exception_ptr object and then rethrown by a call to

--- 38 unchanged lines hidden ---
198/**
199 * Throws an exception returned by __cxa_current_primary_exception(). This
200 * exception may have been caught in another thread.
201 */
202void __cxa_rethrow_primary_exception(void* thrown_exception);
203/**
204 * Returns the current exception in a form that can be stored in an
205 * exception_ptr object and then rethrown by a call to

--- 38 unchanged lines hidden ---