| Age | Commit message (Collapse) | Author |
|
|
|
|
|
KAutoObject.
|
|
|
|
SetThreadActivity.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
by vaddr.
|
|
|
|
|
|
|
|
|
|
nvdrv: /dev/nvhost-prof-gpu for production
|
|
Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com>
|
|
|
|
Prevents some warnings from occurring.
|
|
Now all that remains is for kernel code to be 'shadow-free' and then
-Wshadow can be turned into an error.
|
|
core: Resolve misc straggler cases of variable shadowing
|
|
Resolves shadowing warnings that aren't in a particularly large
subsection of core. Brings us closer to turning -Wshadow into an error.
All that remains now is for cases in the kernel (left untouched for now
since a big change by bunnei is pending), and a few left over in the
service code (will be tackled next).
|
|
While we're at it, we can fix the is_initialized error code.
This fixes the crashes on Shante
|
|
|
|
file_sys: Resolve cases of variable shadowing
|
|
service: filesystem: Return proper error codes for CreateFile
|
|
Brings us closer to enabling -Wshadow as an error in the core code.
|
|
This improves the accuracy of CreateFile by returning the correct error codes on certain conditions (parent directory does not exist, path already exists).
This fixes saving and the loading of existing saves in New Pokemon Snap
|
|
|
|
applets/web: Fix a use-after-free when passing in the URL string
|
|
hid: Implement SevenSixAxis and ConsoleSixAxisSensor
|
|
The URL string was being deleted before being used, leading to a use-after-free occurring when it is used afterwards.
Fix this by taking the string by const ref to extend its lifetime, ensuring it doesn't get deleted before use.
|
|
Eliminates variable shadowing cases across all the loaders to bring us
closer to enabling variable shadowing as an error in core.
|