X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Kernel%2Fdrv%2Ffifo.c;h=b27c678db8f7809247300eab2be674b03eedae36;hb=311b8047c85b22302153740947694df50d2ce356;hp=2af45103f2b453286d17ac10ab66c45bc2af3bbb;hpb=e42035c38b65d428672b128f9ae253f81b2ced96;p=tpg%2Facess2.git diff --git a/Kernel/drv/fifo.c b/Kernel/drv/fifo.c index 2af45103..b27c678d 100644 --- a/Kernel/drv/fifo.c +++ b/Kernel/drv/fifo.c @@ -224,7 +224,7 @@ Uint64 FIFO_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer) #if 0 len = Semaphore_Wait( &pipe->Semaphore, remaining ); #else - VFS_SelectNode(Node, VFS_SELECT_READ, NULL); + VFS_SelectNode(Node, VFS_SELECT_READ, NULL, "FIFO_Read"); // Read buffer // TODO: Rethink this, it might not work on buffer overflow if(pipe->WritePos - pipe->ReadPos < remaining) @@ -295,7 +295,7 @@ Uint64 FIFO_Write(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer) #if 0 len = Semaphore_Signal( &pipe->Semaphore, remaining ); #else - VFS_SelectNode(Node, VFS_SELECT_WRITE, NULL); + VFS_SelectNode(Node, VFS_SELECT_WRITE, NULL, "FIFO_Write"); if(pipe->ReadPos - pipe->WritePos < remaining) len = pipe->ReadPos - pipe->WritePos; else