Changeset c8dea4f in mainline
- Timestamp:
- 2010-07-16T10:09:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0a447ab, aa0d227
- Parents:
- 294f7a52
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/src/debug/stacktrace.c
r294f7a52 rc8dea4f 37 37 #include <typedefs.h> 38 38 39 bool kernel_ frame_pointer_validate(uintptr_t fp)39 bool kernel_stack_trace_context_validate(stack_trace_context_t *ctx) 40 40 { 41 41 return true; 42 42 } 43 43 44 bool kernel_frame_pointer_prev( uintptr_t fp, uintptr_t *prev)44 bool kernel_frame_pointer_prev(stack_trace_context_t *ctx, uintptr_t *prev) 45 45 { 46 46 return true; 47 47 } 48 48 49 bool kernel_return_address_get( uintptr_t fp, uintptr_t *ra)49 bool kernel_return_address_get(stack_trace_context_t *ctx, uintptr_t *ra) 50 50 { 51 51 return true; 52 52 } 53 53 54 bool uspace_ frame_pointer_validate(uintptr_t fp)54 bool uspace_stack_trace_context_validate(stack_trace_context_t *ctx) 55 55 { 56 56 return true; 57 57 } 58 58 59 bool uspace_frame_pointer_prev( uintptr_t fp, uintptr_t *prev)59 bool uspace_frame_pointer_prev(stack_trace_context_t *ctx, uintptr_t *prev) 60 60 { 61 61 return true; 62 62 } 63 63 64 bool uspace_return_address_get( uintptr_t fp, uintptr_t *ra)64 bool uspace_return_address_get(stack_trace_context_t *ctx, uintptr_t *ra) 65 65 { 66 66 return true;
Note:
See TracChangeset
for help on using the changeset viewer.