| |||
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
struct Frame
{
struct Frame *sp;
long cr;
void *lr;
};register void *r1 __asm__("r1");
Frame *frame = (Frame *)r1;while (frame)
{
if (frame->lr)
/* Do something with the return address */
frame = frame->sp;
}If it makes any difference, I am doing this in c++.
- Steve
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/email@hidden This email sent to email@hidden
| Home | Archives | FAQ | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.