Changeset 5a6cc679 in mainline for uspace/lib/c/generic/stacktrace.c
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/stacktrace.c
r132ab5d1 r5a6cc679 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.