Changeset e405228 in mainline for uspace/lib/libc/generic/stacktrace.c


Ignore:
Timestamp:
2010-01-02T18:52:06Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8786aa5
Parents:
a7a0417 (diff), c6d130c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge stack tracing support for ppc32 userspace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/stacktrace.c

    ra7a0417 re405228  
    5252{
    5353        stack_trace_fp_pc(frame_pointer_get(), program_counter_get());
     54        /*
     55         * Prevent the tail call optimization of the previous call by
     56         * making it a non-tail call.
     57         */
     58        (void) frame_pointer_get();
    5459}
    5560
Note: See TracChangeset for help on using the changeset viewer.