Changeset b7fd2a0 in mainline for uspace/lib/c/generic/stacktrace.c
- 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/generic/stacktrace.c
r36f0738 rb7fd2a0 40 40 #include <errno.h> 41 41 42 static int stacktrace_read_uintptr(void *arg, uintptr_t addr, uintptr_t *data);42 static errno_t stacktrace_read_uintptr(void *arg, uintptr_t addr, uintptr_t *data); 43 43 44 44 static stacktrace_ops_t basic_ops = { … … 51 51 stacktrace_t st; 52 52 uintptr_t nfp; 53 int rc;53 errno_t rc; 54 54 55 55 st.op_arg = arg; … … 86 86 } 87 87 88 static int stacktrace_read_uintptr(void *arg, uintptr_t addr, uintptr_t *data)88 static errno_t stacktrace_read_uintptr(void *arg, uintptr_t addr, uintptr_t *data) 89 89 { 90 90 (void) arg;
Note:
See TracChangeset
for help on using the changeset viewer.