Home
last modified time | relevance | path

Searched refs:pidBuf (Results 1 – 4 of 4) sorted by relevance

/kernel/uniproton/src/core/ipc/sem/
Dprt_sem_minor.c72 OS_SEC_L4_TEXT U32 PRT_SemGetPendList(SemHandle semHandle, U32 *tskCnt, U32 *pidBuf, U32 bufLen) in PRT_SemGetPendList() argument
85 if ((pidBuf == NULL) || (len == 0)) { in PRT_SemGetPendList()
102 pidBuf[taskCount] = tskCb->taskPid; in PRT_SemGetPendList()
/kernel/uniproton/src/include/uapi/
Dprt_sem.h364 extern U32 PRT_SemGetPendList(SemHandle semHandle, U32 *tskCnt, U32 *pidBuf, U32 bufLen);
/kernel/uniproton/doc/design/
Dinterface_description.md625 U32 PRT_SemGetPendList(SemHandle semHandle, U32 *tskCnt, U32 *pidBuf, U32 bufLen)
636 pidBuf [OUT] 类型#U32 *,由用户指定的内存区域首地址,用于存储阻塞于指定核内信号量的任务PID。
/kernel/liteos_a/syscall/
Dfs_syscall.c340 char pidBuf[PATH_MAX] = {0}; in ProcRealProcessDirGet() local
366 if (memcpy_s(pidBuf, PATH_MAX, pidStr, strLen) != EOK) { in ProcRealProcessDirGet()
370 pidBuf[strLen] = '\0'; in ProcRealProcessDirGet()
372 pid = atoi(pidBuf); in ProcRealProcessDirGet()