mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
[orbis-kernel] Stub sys_getdirentries
This commit is contained in:
parent
8e9026bf8c
commit
306fecf2ab
2 changed files with 4 additions and 1 deletions
|
|
@ -259,7 +259,9 @@ orbis::SysResult orbis::sys_rmdir(Thread *thread, ptr<char> path) {
|
|||
orbis::SysResult orbis::sys_getdirentries(Thread *thread, sint fd,
|
||||
ptr<char> buf, uint count,
|
||||
ptr<slong> basep) {
|
||||
return ErrorCode::NOSYS;
|
||||
ORBIS_LOG_ERROR(__FUNCTION__, fd, (void *)buf, count, basep);
|
||||
thread->where();
|
||||
return {};
|
||||
}
|
||||
orbis::SysResult orbis::sys_getdents(Thread *thread, sint fd, ptr<char> buf,
|
||||
size_t count) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue