| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
- Also added comment to GetLockHandle function.
|
|\
| |
| | |
Added CreateDirectory function to service/fs.cpp, and in Archive.
|
| | |
|
|/ |
|
| |
|
| |
|
|\
| |
| | |
Fix some warnings
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
hid.cpp: Fixed crash when updating pad data while null
|
| |
| |
| |
| | |
Fixes #137
|
| |
| |
| |
| | |
This was automated using `clang-modernize`.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Fixed typo (make protected member public)
Added license header back in. I originally removed this because I mostly rewrote the file, but meh
ARM: Fixed a type error in dyncom interpreter.
ARM: Updated dyncom to use unique_ptr for internal ARM state.
|
|/ |
|
|\
| |
| | |
APT:U Added a stub fuction for "GlanceParameter"
|
| | |
|
| |
| |
| |
| | |
Kernel: Return an invalid handle to OpenFile when it failed to open.
|
|/ |
|
|
|
| |
Added "SetApplicationCpuTimeLimit" and "GetApplicationCpuTimeLimit" to apt.cpp
|
|
|
| |
seems simple enough
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
loader.cpp: improved file extension checking, made Upper/LowerStr useful, moved string_util into Common namespace
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
These avoid relying on memset for clearing the arrays.
|
|\
| |
| | |
Core: Alter the kernel string functions to use std::string instead of const char*.
|
| |
| |
| |
| | |
Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
|
|/
|
|
| |
Changed HLE function return methods to be static inline functions.
|
|
|
|
|
| |
entry_point would not be added to the string. Also used StringFromFormat
so that the buffer is unnecessary.
|
|\
| |
| | |
Hid minor improvements
|
| |
| |
| |
| | |
HID: Fix typo with DisableGyroscopeLow command.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible.
This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though.
|
| | |
|
|/
|
|
|
| |
While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures.
Instead, we now use a more conventional approach which is a lot more clean to use.
|
| |
|
|
|
|
|
|
|
|
| |
GSP: Cleaned up code and added additional comments.
GSP: Removed unnecessary TODO comment.
GSP: Changed u32 iterators in TriggerCmdReqQueue to unsigned.
|
| |
|
|
|
|
| |
- Various other cleanups.
|
| |
|
|
|
|
| |
Core: Added a comment to explain the logic for the RunLoop iterations.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Templates shouldn't be marked as inline if they aren't defined in the header.
|
| |
|
|
|
|
| |
Anonymous structs are not standard C++, hence don't use them.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
AddressArbiter: Added documentation comment, fixed whitespace issue.
AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear.
SVC: Removed trailing whitespace.
|
|
|
|
|
|
| |
Thread: Cleaned up arbitrate address functions.
Thread: Cleaned up ArbitrateAllThreads function.
|
| |
|
|
|
|
| |
- Also added some safety checks to MapSharedMemory.
|
|
|
|
|
|
|
|
| |
- Previously, used a hard-coded shared memory handle of 0x10002000 (as used by libctru homebrew)
GSP: Added name for shared memory.
GSP: Cleaned up assertion message.
|
|
|
|
| |
SharedMemory: Added optional name field for tracking known objects.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Archive: Fixed brace ugliness for neobrain :)
FS: Commented out unused local variables to prevent warnings.
...But keeping them here for future use.
archive_romfs: Removed unused #include.
|
|
|
|
|
|
| |
APT: More cleanups.
APT: Changed SignalType to be type u32.
|
|
|
|
| |
FS: Added to CMakeLists.txt
|
| |
|
|\
| |
| |
| |
| |
| | |
Conflicts:
src/core/hle/function_wrappers.h
src/core/hle/service/gsp.cpp
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- SVC: Added ExitThread support
- SVC: Added SignalEvent support
- Thread: Added WAITTYPE_EVENT for waiting threads for event signals
- Thread: Added support for blocking on other threads to finish (e.g. Thread::Join)
- Thread: Added debug function for printing current threads ready for execution
- Thread: Removed hack/broken thread ready state code from Kernel::Reschedule
- Mutex: Moved WaitCurrentThread from SVC to Mutex::WaitSynchronization
- Event: Added support for blocking threads on event signalling
Kernel: Added missing algorithm #include for use of std::find on non-Windows platforms.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
- force kernel reschedule after svcWaitSynchronization
- fixed some bugs with passing in pointer arguments
- cleaned up some comments and log messages
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\| |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
- cleaned up Kernel code a bit (moved stuff into namespace, fixed whitespace issues)
- added handle types for all different CTROS handles
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
- updated CreateHandle/DeleteHandle to use KernelObject's
|
| | |
|
| |
| |
| |
| | |
- various cleanups
|
| | |
|
| |
| |
| |
| | |
- added ResetType enum
|
| |
| |
| |
| | |
- changed some stubbed SVCs to return unique handle names for debugging purposes
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
- reorganized some kernel thread functions
- added placeholder __KernelWaitThread_Synchronization function
|
| |
| |
| |
| | |
- added KERNEL_DEFAULT_STACK_SIZE definition (0x4000)
|
| | |
|
| | |
|
| |\ |
|
| | |
| | |
| | |
| | | |
- added SVC structs MemoryInfo and PageInfo
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
- cleaned up CreateThread svc
|
| | |
| | |
| | |
| | |
| | | |
- added __KernelSwitchToThread for enabling a thread
- added __KernelRotateThreadReadyQueue
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
- fixed some logging
|
| | | |
|
|\ \ \
| | |/
| |/| |
|
| |/
| |
| |
| | |
- removed HLE::CallMCR function (was pointless)
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
- added a helper function for getting command buffer for services
- fixed bug where GSP DMA was incorrectly being done in DataSynchronizationBarrier (instead of gsp_TriggerCmdReqQueue)
|
| |
| |
| |
| | |
- added stubbed HLE syscall functions for svc_GetResourceLimit and svc_GetResourceLimitCurrentValues
|
| | |
|
| |
| |
| |
| | |
- moved instruction decoding to coprocessor HLE module
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
- added stub for SVC CreateAddressArbiter
- added OutputDebugString SVC
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- added shared memory region
- moarrrr cleanups to memory_map
|
| |
|
|
|
|
| |
- added option to create/delete service handles
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- fixed log message wording in hle.cpp
- added syscall stubs for CloseHandle and WaitSynchronization1
|
|
|
|
| |
- various cleanups/refactors to HLE services
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- added function tables for service calls
- lots of refactoring
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
- added a manager for keeping track of services/ports
- added a memory mapped region for memory accessed by HLE
- added HLE for GetThreadCommandBuffer function
|
|
|
|
| |
- added service.h as an initial service interface
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- added hle.cpp and module registration
- removed unused code
|
|
|