Changeset b7fd2a0 in mainline for uspace/lib/c/include/stacktrace.h
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stacktrace.h
r36f0738 rb7fd2a0 42 42 43 43 typedef struct { 44 int (*read_uintptr)(void *, uintptr_t, uintptr_t *);44 errno_t (*read_uintptr)(void *, uintptr_t, uintptr_t *); 45 45 } stacktrace_ops_t; 46 46 … … 59 59 */ 60 60 extern bool stacktrace_fp_valid(stacktrace_t *, uintptr_t); 61 extern int stacktrace_fp_prev(stacktrace_t *, uintptr_t, uintptr_t *);62 extern int stacktrace_ra_get(stacktrace_t *, uintptr_t, uintptr_t *);61 extern errno_t stacktrace_fp_prev(stacktrace_t *, uintptr_t, uintptr_t *); 62 extern errno_t stacktrace_ra_get(stacktrace_t *, uintptr_t, uintptr_t *); 63 63 64 64 extern void stacktrace_prepare(void);
Note:
See TracChangeset
for help on using the changeset viewer.