libunwind-ptrace.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* libunwind - a platform-independent unwind library
  2. Copyright (C) 2004 Hewlett-Packard Co
  3. Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
  4. This file is part of libunwind.
  5. Permission is hereby granted, free of charge, to any person obtaining
  6. a copy of this software and associated documentation files (the
  7. "Software"), to deal in the Software without restriction, including
  8. without limitation the rights to use, copy, modify, merge, publish,
  9. distribute, sublicense, and/or sell copies of the Software, and to
  10. permit persons to whom the Software is furnished to do so, subject to
  11. the following conditions:
  12. The above copyright notice and this permission notice shall be
  13. included in all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  15. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  16. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  17. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  18. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  19. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  20. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  21. #ifndef libunwind_ptrace_h
  22. #define libunwind_ptrace_h
  23. #include <libunwind.h>
  24. #if defined(__cplusplus) || defined(c_plusplus)
  25. extern "C" {
  26. #endif
  27. /* Helper routines which make it easy to use libunwind via ptrace().
  28. They're available only if UNW_REMOTE_ONLY is _not_ defined and they
  29. aren't really part of the libunwind API. They are implemented in a
  30. archive library called libunwind-ptrace.a. */
  31. extern void *_UPT_create (pid_t);
  32. extern void _UPT_destroy (void *);
  33. extern int _UPT_find_proc_info (unw_addr_space_t, unw_word_t,
  34. unw_proc_info_t *, int, void *);
  35. extern void _UPT_put_unwind_info (unw_addr_space_t, unw_proc_info_t *, void *);
  36. extern int _UPT_get_dyn_info_list_addr (unw_addr_space_t, unw_word_t *,
  37. void *);
  38. extern int _UPT_access_mem (unw_addr_space_t, unw_word_t, unw_word_t *, int,
  39. void *);
  40. extern int _UPT_access_reg (unw_addr_space_t, unw_regnum_t, unw_word_t *,
  41. int, void *);
  42. extern int _UPT_access_fpreg (unw_addr_space_t, unw_regnum_t, unw_fpreg_t *,
  43. int, void *);
  44. extern int _UPT_get_proc_name (unw_addr_space_t, unw_word_t, char *, size_t,
  45. unw_word_t *, void *);
  46. extern int _UPT_resume (unw_addr_space_t, unw_cursor_t *, void *);
  47. extern unw_accessors_t _UPT_accessors;
  48. #if defined(__cplusplus) || defined(c_plusplus)
  49. }
  50. #endif
  51. #endif /* libunwind_ptrace_h */