Bump for 3.6-28
[LibreOffice.git] / bridges / source / cpp_uno / gcc3_solaris_intel / share.hxx
blobda2367ad172b2301462911a611205ceac8b3550a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include "uno/mapping.h"
31 #include <typeinfo>
32 #include <exception>
33 #include <cstddef>
35 namespace CPPU_CURRENT_NAMESPACE
38 void dummy_can_throw_anything( char const * );
40 // ----- following decl from libstdc++-v3/libsupc++/unwind-cxx.h and unwind.h
42 struct _Unwind_Exception
44 unsigned exception_class __attribute__((__mode__(__DI__)));
45 void * exception_cleanup;
46 unsigned private_1 __attribute__((__mode__(__word__)));
47 unsigned private_2 __attribute__((__mode__(__word__)));
48 } __attribute__((__aligned__));
50 struct __cxa_exception
52 ::std::type_info *exceptionType;
53 void (*exceptionDestructor)(void *);
55 ::std::unexpected_handler unexpectedHandler;
56 ::std::terminate_handler terminateHandler;
58 __cxa_exception *nextException;
60 int handlerCount;
62 int handlerSwitchValue;
63 const unsigned char *actionRecord;
64 const unsigned char *languageSpecificData;
65 void *catchTemp;
66 void *adjustedPtr;
68 _Unwind_Exception unwindHeader;
71 extern "C" void *__cxa_allocate_exception(
72 std::size_t thrown_size ) throw();
73 extern "C" void __cxa_throw (
74 void *thrown_exception, std::type_info *tinfo, void (*dest) (void *) ) __attribute__((noreturn));
76 struct __cxa_eh_globals
78 __cxa_exception *caughtExceptions;
79 unsigned int uncaughtExceptions;
81 extern "C" __cxa_eh_globals *__cxa_get_globals () throw();
83 // -----
85 //==================================================================================================
86 void raiseException(
87 uno_Any * pUnoExc, uno_Mapping * pUno2Cpp );
88 //==================================================================================================
89 void fillUnoException(
90 __cxa_exception * header, uno_Any *, uno_Mapping * pCpp2Uno );
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */