| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
num_handles is a s32
|
|
This is made obsolete by the presence of implicit constructors.
|
|
Fix memory leak v2
|
|
|
|
|
|
|
|
SVC: Implement svcInfo:IdleTickCount
|
|
Used by the Witcher 3
|
|
Co-Authored-By: Fernando S. <1731197+FernandoS27@users.noreply.github.com>
|
|
|
|
common/logging: Reduce dependent header include overhead
|
|
core: Fix memory leak
|
|
This reduces the load of requiring to include std::chrono in all files which include log.h
|
|
|
|
|
|
|
|
|
|
|
|
|
|
kernel: Optimize GetHostThreadID
|
|
Misplaced break made it only check for the first core.
|
|
|
|
- This would have limited value, and would be a mess to handle properly.
|
|
|
|
- Useful purely for debugging.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- ExitProcess is not actually implemented either way, and this needs more work before we implement.
|
|
|
|
- Since we do not implement multiprocess right now, this should not be a crashing assert.
|
|
|
|
|
|
|
|
|
|
into handle table.
|
|
|
|
|
|
Removes common_sizes.h in favor of having `_KiB`, `_MiB`, `_GiB`, etc
user-literals within literals.h.
To keep the global namespace clean, users will have to use:
```
using namespace Common::Literals;
```
to access these literals.
|