Home
last modified time | relevance | path

Searched refs:sigcb (Results 1 – 3 of 3) sorted by relevance

/kernel/liteos_a/kernel/base/ipc/
Dlos_signal.c70 STATIC VOID OsMoveTmpInfoToUnbInfo(sig_cb *sigcb, INT32 signo) in OsMoveTmpInfoToUnbInfo() argument
72 SigInfoListNode *tmpInfoNode = sigcb->tmpInfoListHead; in OsMoveTmpInfoToUnbInfo()
73 SigInfoListNode **prevHook = &sigcb->tmpInfoListHead; in OsMoveTmpInfoToUnbInfo()
77 … (VOID)memcpy_s(&sigcb->sigunbinfo, sizeof(siginfo_t), &tmpInfoNode->info, sizeof(siginfo_t)); in OsMoveTmpInfoToUnbInfo()
88 STATIC INT32 OsAddSigInfoToTmpList(sig_cb *sigcb, siginfo_t *info) in OsAddSigInfoToTmpList() argument
91 SigInfoListNode *tmp = sigcb->tmpInfoListHead; in OsAddSigInfoToTmpList()
106 tmp->next = sigcb->tmpInfoListHead; in OsAddSigInfoToTmpList()
107 sigcb->tmpInfoListHead = tmp; in OsAddSigInfoToTmpList()
115 VOID OsClearSigInfoTmpList(sig_cb *sigcb) in OsClearSigInfoTmpList() argument
117 while (sigcb->tmpInfoListHead != NULL) { in OsClearSigInfoTmpList()
[all …]
/kernel/liteos_a/arch/arm/arm/src/
Dlos_hw.c109 sig_cb *sigcb = &task->sig; in OsUserCloneParentStack() local
112 if (sigcb->sigContext != NULL) { in OsUserCloneParentStack()
113 cloneStack = (VOID *)((UINTPTR)sigcb->sigContext - sizeof(TaskContext)); in OsUserCloneParentStack()
/kernel/liteos_a/kernel/base/include/
Dlos_signal.h179 VOID OsClearSigInfoTmpList(sig_cb *sigcb);