Changeset 5a6cc679 in mainline for uspace/lib/c/include/stacktrace.h
- Timestamp:
- 2018-01-31T02:21:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
-
uspace/lib/c/include/stacktrace.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stacktrace.h
r132ab5d1 r5a6cc679 37 37 #define LIBC_STACKTRACE_H_ 38 38 39 #include <errno.h> 39 40 #include <stdint.h> 40 41 #include <stdbool.h> 41 42 42 43 typedef struct { 43 int (*read_uintptr)(void *, uintptr_t, uintptr_t *);44 errno_t (*read_uintptr)(void *, uintptr_t, uintptr_t *); 44 45 } stacktrace_ops_t; 45 46 … … 58 59 */ 59 60 extern bool stacktrace_fp_valid(stacktrace_t *, uintptr_t); 60 extern int stacktrace_fp_prev(stacktrace_t *, uintptr_t, uintptr_t *);61 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 *); 62 63 63 64 extern void stacktrace_prepare(void);
Note:
See TracChangeset
for help on using the changeset viewer.
