mostang.com!davidm | 2251685 | 2002-12-19 07:16:50 +0000 | [diff] [blame] | 1 | /* libunwind - a platform-independent unwind library |
| 2 | Copyright (C) 2001-2002 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 "internal.h" |
| 27 | |
| 28 | HIDDEN void |
| 29 | unwi_put_dynamic_unwind_info (unw_addr_space_t as, unw_proc_info_t *pi, |
| 30 | void *arg) |
| 31 | { |
| 32 | switch (pi->format) |
| 33 | { |
| 34 | case UNW_INFO_FORMAT_DYNAMIC: |
mostang.com!davidm | 52b17e2 | 2003-02-08 10:10:59 +0000 | [diff] [blame] | 35 | #ifndef UNW_LOCAL_ONLY |
| 36 | # ifdef UNW_REMOTE_ONLY |
mostang.com!davidm | 2251685 | 2002-12-19 07:16:50 +0000 | [diff] [blame] | 37 | unwi_dyn_remote_put_unwind_info (as, pi, arg); |
mostang.com!davidm | 52b17e2 | 2003-02-08 10:10:59 +0000 | [diff] [blame] | 38 | # else |
| 39 | if (as != unw_local_addr_space) |
| 40 | unwi_dyn_remote_put_unwind_info (as, pi, arg); |
| 41 | # endif |
| 42 | #endif |
mostang.com!davidm | 2251685 | 2002-12-19 07:16:50 +0000 | [diff] [blame] | 43 | break; |
| 44 | |
| 45 | case UNW_INFO_FORMAT_TABLE: |
hp.com!davidm | 72d091c | 2003-11-25 22:33:49 +0000 | [diff] [blame^] | 46 | case UNW_INFO_FORMAT_REMOTE_TABLE: |
mostang.com!davidm | 2251685 | 2002-12-19 07:16:50 +0000 | [diff] [blame] | 47 | #ifdef tdep_put_unwind_info |
| 48 | tdep_put_unwind_info (as, pi, arg); |
| 49 | break; |
| 50 | #endif |
| 51 | /* fall through */ |
| 52 | default: |
| 53 | break; |
| 54 | } |
| 55 | } |