homeip.net!davidm | 1682f97 | 2004-08-17 15:34:28 +0000 | [diff] [blame] | 1 | /* libunwind - a platform-independent unwind library |
| 2 | Copyright (C) 2003 Hewlett-Packard Co |
| 3 | Contributed by David Mosberger-Tang <davidm@hpl.hp.com> |
| 4 | |
| 5 | This file is part of libunwind. |
| 6 | |
| 7 | Permission is hereby granted, free of charge, to any person obtaining |
| 8 | a copy of this software and associated documentation files (the |
| 9 | "Software"), to deal in the Software without restriction, including |
| 10 | without limitation the rights to use, copy, modify, merge, publish, |
| 11 | distribute, sublicense, and/or sell copies of the Software, and to |
| 12 | permit persons to whom the Software is furnished to do so, subject to |
| 13 | the following conditions: |
| 14 | |
| 15 | The above copyright notice and this permission notice shall be |
| 16 | included in all copies or substantial portions of the Software. |
| 17 | |
| 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 19 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 20 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 21 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 22 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 23 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 24 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ |
| 25 | |
| 26 | #include <stdlib.h> |
| 27 | |
| 28 | #include "unwind_i.h" |
| 29 | |
Konstantin Belousov | bb41eba | 2010-03-09 18:01:08 +0200 | [diff] [blame] | 30 | #if defined(_LITTLE_ENDIAN) && !defined(__LITTLE_ENDIAN) |
| 31 | #define __LITTLE_ENDIAN _LITTLE_ENDIAN |
| 32 | #endif |
| 33 | |
homeip.net!davidm | 1682f97 | 2004-08-17 15:34:28 +0000 | [diff] [blame] | 34 | PROTECTED unw_addr_space_t |
| 35 | unw_create_addr_space (unw_accessors_t *a, int byte_order) |
| 36 | { |
| 37 | #ifdef UNW_LOCAL_ONLY |
| 38 | return NULL; |
| 39 | #else |
| 40 | unw_addr_space_t as = malloc (sizeof (*as)); |
| 41 | |
| 42 | if (!as) |
| 43 | return NULL; |
| 44 | |
| 45 | memset (as, 0, sizeof (*as)); |
| 46 | |
| 47 | as->acc = *a; |
| 48 | |
| 49 | /* |
| 50 | * x86 supports only little-endian. |
| 51 | */ |
| 52 | if (byte_order != 0 && byte_order != __LITTLE_ENDIAN) |
| 53 | return NULL; |
| 54 | return as; |
| 55 | #endif |
| 56 | } |