Changeset 8844e70 in mainline for uspace/lib/c/arch/ia32/src/stacktrace_asm.S
- Timestamp:
- 2016-04-11T17:03:47Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3b0f1b9a
- Parents:
- 3a34852
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia32/src/stacktrace_asm.S
r3a34852 r8844e70 27 27 # 28 28 29 #include <abi/asmtool.h> 30 29 31 .text 30 32 31 .global stacktrace_prepare 32 .global stacktrace_fp_get33 .global stacktrace_pc_get 33 FUNCTION_BEGIN(stacktrace_prepare) 34 ret 35 FUNCTION_END(stacktrace_prepare) 34 36 35 stacktrace_prepare: 36 ret 37 38 stacktrace_fp_get: 37 FUNCTION_BEGIN(stacktrace_fp_get) 39 38 movl %ebp, %eax 40 39 ret 40 FUNCTION_END(stacktrace_fp_get) 41 41 42 stacktrace_pc_get: 42 FUNCTION_BEGIN(stacktrace_pc_get) 43 43 movl (%esp), %eax 44 44 ret 45 FUNCTION_END(stacktrace_pc_get)
Note:
See TracChangeset
for help on using the changeset viewer.