You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is tnat when the write does its job, it closes the file. Then reader comes and open it with same fd but it is blocked when it is reading.
Actually it reads first 16 byte, but in the second iteration in ApplyFileIoSyscall, instead of getting zero, it is blocked when it call read syscall.
I was running gvisor testcase on quark and I faced an issue with fifo. The testcase is this:
The problem is tnat when the write does its job, it closes the file. Then reader comes and open it with same fd but it is blocked when it is reading.
Actually it reads first 16 byte, but in the second iteration in
ApplyFileIoSyscall
, instead of getting zero, it is blocked when it callread
syscall.code of
ReadFd
andwriteFd
link to code:code of
ApplyFileIoSyscall
link :The text was updated successfully, but these errors were encountered: