rpcsx/orbis-kernel/src/sys/sys_pipe.cpp

10 lines
277 B
C++
Raw Normal View History

2023-07-03 13:10:16 +02:00
#include "sys/sysproto.hpp"
#include <pipe.hpp>
2023-07-03 13:10:16 +02:00
orbis::SysResult orbis::sys_pipe(Thread *thread) {
auto pipe = createPipe();
thread->retval[0] = thread->tproc->fileDescriptors.insert(pipe);
thread->retval[1] = thread->tproc->fileDescriptors.insert(pipe);
return {};
}