]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/libstdc++-v3/contrib/libstdc++-v3-4.5/config/os/hpux/os_defines.h
Update
[l4.git] / l4 / pkg / l4re-core / libstdc++-v3 / contrib / libstdc++-v3-4.5 / config / os / hpux / os_defines.h
1 // Specific definitions for HPUX  -*- C++ -*-
2
3 // Copyright (C) 2000, 2002, 2004, 2005, 2008, 2009 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
19
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23 // <http://www.gnu.org/licenses/>.
24
25 /** @file os_defines.h
26  *  This is an internal header file, included by other library headers.
27  *  You should not attempt to use it directly.
28  */
29
30 #ifndef _GLIBCXX_OS_DEFINES
31 #define _GLIBCXX_OS_DEFINES 1
32
33 // System-specific #define, typedefs, corrections, etc, go here.  This
34 // file will come before all others.
35
36 // Use macro form of ctype functions to ensure __SB_masks is defined.
37 #define _SB_CTYPE_MACROS 1
38
39 // This would be defaulted in the main c++config header if we didn't
40 // define it here, but it has to be defined before we can use the
41 // namespace macros, so we have to define it to nothing here instead.
42 #define _GLIBCXX_PSEUDO_VISIBILITY(V)
43
44 /* HP-UX, for reasons unknown choose to use a different name for
45    the string to [unsigned] long long conversion routines.
46
47    Furthermore, instead of having the prototypes in stdlib.h like
48    everyone else, they put them into a non-standard header
49    <inttypes.h>.  Ugh.
50
51    <inttypes.h> defines a variety of things, some of which we 
52    probably do not want.  So we don't want to include it here.
53
54    Luckily we can just declare strtoll and strtoull with the
55    __asm extension which effectively renames calls at the
56    source level without namespace pollution.
57
58    Also note that the compiler defines _INCLUDE_LONGLONG for C++
59    unconditionally, which makes intmax_t and uintmax_t long long
60    types.
61
62    We also force _GLIBCXX_USE_LONG_LONG here so that we don't have
63    to bastardize configure to deal with this sillyness.  */
64
65 _GLIBCXX_BEGIN_NAMESPACE(std)
66 _GLIBCXX_BEGIN_EXTERN_C
67
68 #ifndef __LP64__
69   __extension__ long long strtoll (const char *, char **, int)
70     __asm  ("__strtoll");
71   __extension__ unsigned long long strtoull (const char *, char **, int)
72     __asm  ("__strtoull");
73 #else
74   __extension__ long long strtoll (const char *, char **, int)
75     __asm  ("strtol");
76   __extension__ unsigned long long strtoull (const char *, char **, int)
77     __asm  ("strtoul");
78 #endif
79
80 _GLIBCXX_END_EXTERN_C
81 _GLIBCXX_END_NAMESPACE
82
83 #define _GLIBCXX_USE_LONG_LONG 1
84
85 // HPUX on IA64 requires vtable to be 64 bit aligned even at 32 bit
86 // mode.  We need to pad the vtable structure to achieve this.  
87 #if !defined(_LP64) && defined (__ia64__)
88 #define _GLIBCXX_VTABLE_PADDING 8
89 typedef long int __padding_type;
90 #endif
91
92 // GCC on IA64 HP-UX uses the HP-UX system unwind library,
93 // it does not have the _Unwind_Resume_or_Rethrow entry point
94 // because that is not part of the standard IA64 Unwind ABI.
95 #if defined (__ia64__)
96 #define _LIBUNWIND_STD_ABI 1
97 #endif
98
99 /* Don't use pragma weak in gthread headers.  HP-UX rejects programs
100    with unsatisfied external references even if all of those references
101    are weak; gthread relies on such unsatisfied references being resolved
102    to null pointers when weak symbol support is on.  */
103 #define _GLIBCXX_GTHREAD_USE_WEAK 0
104
105 // The strtold function is obsolete and not C99 conformant on PA HP-UX.
106 // It returns plus or minus _LDBL_MAX instead of plus or minus HUGE_VALL
107 // if the correct value would cause overflow.  It doesn't handle "inf",
108 // "infinity" and "nan".  It is not thread safe. 
109 #if defined (__hppa__)
110 #define _GLIBCXX_HAVE_BROKEN_STRTOLD 1
111 #endif
112 #endif