modify the indentation
This commit is contained in:
parent
c884ada07d
commit
a73348da8d
|
@ -547,12 +547,12 @@ STATIC INT32 OsFutexWaitTask(const UINT32 timeOut, const UINT32 *userVaddr, UINT
|
||||||
if (LOS_ArchCopyFromUser(&lockVal, userVaddr, sizeof(UINT32))) {
|
if (LOS_ArchCopyFromUser(&lockVal, userVaddr, sizeof(UINT32))) {
|
||||||
PRINT_ERR("Futex wait param check failed! copy from user failed!\n");
|
PRINT_ERR("Futex wait param check failed! copy from user failed!\n");
|
||||||
futexRet = LOS_EINVAL;
|
futexRet = LOS_EINVAL;
|
||||||
goto EXIT_ERR;
|
goto EXIT_ERR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lockVal != val) {
|
if (lockVal != val) {
|
||||||
futexRet = LOS_EBADF;
|
futexRet = LOS_EBADF;
|
||||||
goto EXIT_ERR;
|
goto EXIT_ERR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OsFutexInserTaskToHash(&taskCB, &node, futexKey)) {
|
if (OsFutexInserTaskToHash(&taskCB, &node, futexKey)) {
|
||||||
|
|
Loading…
Reference in New Issue