mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-10 01:08:21 +00:00
Set up pointers to the stack-pointer/frame-pointer words in the thread's
context structure. Useful for displaying thread stacks in the debugger.
This commit is contained in:
parent
a3ed7efc6b
commit
301d11ba40
@ -56,6 +56,12 @@ _MD_SET_PRIORITY(_MDThread *thread, PRUintn newPri)
|
||||
PRStatus
|
||||
_MD_InitializeThread(PRThread *thread)
|
||||
{
|
||||
/*
|
||||
* set the pointers to the stack-pointer and frame-pointer words in the
|
||||
* context structure; this is for debugging use.
|
||||
*/
|
||||
thread->md.sp = _MD_GET_SP_PTR(thread);
|
||||
thread->md.fp = _MD_GET_FP_PTR(thread);
|
||||
return PR_SUCCESS;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user