Tree:
ed0bdcc638
Kernel
Newvulkanfeatures
Update-some-barriers-test
atomicops-mxwell
bcn-ternary-soft
camille/bufferc
chore/NamespaceIndentation
chore/chore
civa
cyber/async-gpu-android
descriptor
descriptor_pool_opt
descriptor_set
discfix
display-modified-settings-first
dmnt2
dynarmic-coproc
dynarmic-ppc64
eden-orbis-ps4
eds-true-adreno-fixes
eds-true-adreno-fixes-pre-0.1.0
ffmpeg-cross-compile
fix/discord-rpc
fix/gbh_test
fix/socket
flatopsfixes23485
fs-try
fs_external_dlcupdates
install-vulkan-ps1-fix-windows-on-arm
interval-zero
lanobu
liz-crash-dumps-solaris
liz-dynarmic-macos-fbsd-port
liz-get-rid-of-mcl-intrusive-list
liz-heaptrack-fix
liz-no-rtti-allowance
lizzie/adreno5-mali-driver-fix
lizzie/astc-mp4-improv
lizzie/audio-remove-recursive-lock
lizzie/blacklist-vids-nvidia-580
lizzie/cmake-apple-icons-path
lizzie/dynarmic-rng-regalloc-arm64
lizzie/dynarmic-sse3-impls
lizzie/fix-dragonslayer-armnce
lizzie/fix-my-fuckup-with-vic
lizzie/fix-vic-msvc-attempt-2
lizzie/inline-dynarmic-spooky
lizzie/log-remove-alloc-except
lizzie/nce-port1123
lizzie/openbsd-78-fix
lizzie/plist-macos-upd1
lizzie/qt-fix-user-dialogue
lizzie/rasterizer-recursive-mutex-not
lizzie/sgsr
lizzie/sse2neon-fuck123
lizzie/texture-pass-revert-1
lizzie/try-fix-win11-crash-fuck
lizzie/update-headers-meta
lizzie/vids-ratatata
lock-term-1
macroify-surface-stuffs
master
memsetopsyscallavoid
mmap-fixews
msvc-debug
msvc_fix-debug-build
mutliplayer-filter-better1
n64
nce_cpp
netgate1
netusejthreadstuff
nvnflinger
pintocputhing
pipelinederivative
port/lr
qcomopts2
rayman/signed-spirv-texture-gather-metal-fix
refactoreds2
release/0.0.3
release/0.0.4
release/0.1.0
retroarch-core
revert-2695
revertrevert
sgsrtry
shader_recompiler
showcase
showcase2
simp-word-man1
sjkdbsdfjkbsdf-2834
spookymansionreducecpuusage
spvopts
sured-revert
techno48473719
test-revert-gpu-optim
test2
true-eds
true-eds-graphics
true-eds-pre-0.0.1
ui-uuid-dialog
vk-fix-oom-force-maller-buffers
vk-surface-andpc
vulkan-thingy
vulkanasync
woa-turnip-expr
xbzk-saf-recursive-write-with-permission-request
xbzk/bindless-textures-support
0.0.0
0.0.1-pre-alpha
0.0.2-pre-alpha
test-tag1
test-tag2
v0.0.3
v0.0.3-rc1
v0.0.3-rc2
v0.0.3-rc3
v0.0.3.git
v0.0.4
v0.0.4-rc1
v0.0.4-rc2
v0.0.4-rc2.test
v0.0.4-rc2.test2
v0.0.4-rc3
v0.0.4-rc3.test1
v0.0.4-rc3.test2
v0.0.4.test
v0.1.0
v0.1.0-rc1
${ noResults }
53 Commits (ed0bdcc6385f8984b07780a7b2071696c4829466)
| Author | SHA1 | Message | Date |
|---|---|---|---|
|
|
ea9ce0fba7 |
Filesystem/Archives: Implemented the SaveData archive
The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found |
11 years ago |
|
|
c2588403c0 |
HLE: Revamp error handling throrough the HLE code
All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed. |
11 years ago |