mirror of
https://github.com/wiiu-env/libmocha.git
synced 2026-09-07 09:45:09 -05:00
Add devoptab support to replace the libioushax devoptab
This commit is contained in:
29
source/devoptab/devoptab_fsa_close.cpp
Normal file
29
source/devoptab/devoptab_fsa_close.cpp
Normal file
@@ -0,0 +1,29 @@
|
||||
#include "devoptab_fsa.h"
|
||||
#include "logger.h"
|
||||
#include <mutex>
|
||||
|
||||
int __fsa_close(struct _reent *r,
|
||||
void *fd) {
|
||||
FSError status;
|
||||
__fsa_file_t *file;
|
||||
|
||||
if (!fd) {
|
||||
r->_errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
|
||||
file = (__fsa_file_t *) fd;
|
||||
|
||||
auto *deviceData = (FSADeviceData *) r->deviceData;
|
||||
|
||||
std::lock_guard<MutexWrapper> lock(file->mutex);
|
||||
|
||||
status = FSACloseFile(deviceData->clientHandle, file->fd);
|
||||
if (status < 0) {
|
||||
DEBUG_FUNCTION_LINE_ERR("FSACloseFile(0x%08X, 0x%08X) failed: %s", deviceData->clientHandle, file->fd, FSAGetStatusStr(status));
|
||||
r->_errno = __fsa_translate_error(status);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user