1/* libunwind - a platform-independent unwind library 2 Copyright (C) 2008 CodeSourcery 3 4This file is part of libunwind. 5 6Permission is hereby granted, free of charge, to any person obtaining 7a copy of this software and associated documentation files (the 8"Software"), to deal in the Software without restriction, including 9without limitation the rights to use, copy, modify, merge, publish, 10distribute, sublicense, and/or sell copies of the Software, and to 11permit persons to whom the Software is furnished to do so, subject to 12the following conditions: 13 14The above copyright notice and this permission notice shall be 15included in all copies or substantial portions of the Software. 16 17THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 18EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 19MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 20NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 21LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 22OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 23WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 24 25#include "unwind_i.h" 26 27PROTECTED int 28unw_get_proc_info (unw_cursor_t *cursor, unw_proc_info_t *pi) 29{ 30 struct cursor *c = (struct cursor *) cursor; 31 int ret; 32 33 /* We can only unwind using Dwarf into on ARM: return failure code 34 if it's not present. */ 35 ret = dwarf_make_proc_info (&c->dwarf); 36 if (ret < 0) 37 return ret; 38 39 *pi = c->dwarf.pi; 40 return 0; 41} 42