Searched refs:pCurThreadCtx (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRTCoreDump.h103 ucontext_t *pCurThreadCtx; /* Context info. of current thread before starting to dump */ member in struct:VBOXPROCESS
/vbox/src/VBox/Runtime/r3/solaris/
H A Dcoredumper-solaris.h109 ucontext_t *pCurThreadCtx; /**< Context info. of current thread before starting to dump */ member in struct:RTSOLCOREPROCESS
H A Dcoredumper-solaris.cpp813 AssertReturn(pSolProc->pCurThreadCtx, VERR_NO_DATA);
901 AssertCompile(sizeof(pStatus->pr_reg) == sizeof(pSolProc->pCurThreadCtx->uc_mcontext.gregs));
902 AssertCompile(sizeof(pStatus->pr_fpreg) == sizeof(pSolProc->pCurThreadCtx->uc_mcontext.fpregs));
903 memcpy(&pStatus->pr_reg, &pSolProc->pCurThreadCtx->uc_mcontext.gregs, sizeof(pStatus->pr_reg));
904 memcpy(&pStatus->pr_fpreg, &pSolProc->pCurThreadCtx->uc_mcontext.fpregs, sizeof(pStatus->pr_fpreg));
906 AssertCompile(sizeof(pStatus->pr_lwphold) == sizeof(pSolProc->pCurThreadCtx->uc_sigmask));
907 memcpy(&pStatus->pr_lwphold, &pSolProc->pCurThreadCtx->uc_sigmask, sizeof(pStatus->pr_lwphold));
908 pStatus->pr_ustack = (uintptr_t)&pSolProc->pCurThreadCtx->uc_stack;
1941 pSolProc->pCurThreadCtx = pContext;

Completed in 56 milliseconds