diff options
| author | wwylele <wwylele@gmail.com> | 2016-04-08 21:53:37 +0300 | 
|---|---|---|
| committer | wwylele <wwylele@gmail.com> | 2016-09-22 13:52:52 +0800 | 
| commit | 1c0179ad1b60a4f4da590760f9e7d61f211801bf (patch) | |
| tree | 62e9734f7d2bb45e6fe87ff8df06d034c4a0c456 /src/core | |
| parent | f69a543110703e09adc830bbc65e3c39be0cc52b (diff) | |
name objects
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/svc.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 02b397eba..c6b80dc50 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -576,6 +576,7 @@ static ResultCode CreateMutex(Handle* out_handle, u32 initial_locked) {      using Kernel::Mutex;      SharedPtr<Mutex> mutex = Mutex::Create(initial_locked != 0); +    mutex->name = Common::StringFromFormat("mutex-%08x", Core::g_app_core->GetReg(14));      CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(mutex)));      LOG_TRACE(Kernel_SVC, "called initial_locked=%s : created handle=0x%08X", @@ -646,6 +647,7 @@ static ResultCode CreateSemaphore(Handle* out_handle, s32 initial_count, s32 max      using Kernel::Semaphore;      CASCADE_RESULT(SharedPtr<Semaphore> semaphore, Semaphore::Create(initial_count, max_count)); +    semaphore->name = Common::StringFromFormat("semaphore-%08x", Core::g_app_core->GetReg(14));      CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(semaphore)));      LOG_TRACE(Kernel_SVC, "called initial_count=%d, max_count=%d, created handle=0x%08X", @@ -702,6 +704,7 @@ static ResultCode CreateEvent(Handle* out_handle, u32 reset_type) {      using Kernel::Event;      SharedPtr<Event> evt = Event::Create(static_cast<Kernel::ResetType>(reset_type)); +    evt->name = Common::StringFromFormat("event-%08x", Core::g_app_core->GetReg(14));      CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(evt)));      LOG_TRACE(Kernel_SVC, "called reset_type=0x%08X : created handle=0x%08X", reset_type, @@ -748,6 +751,7 @@ static ResultCode CreateTimer(Handle* out_handle, u32 reset_type) {      using Kernel::Timer;      SharedPtr<Timer> timer = Timer::Create(static_cast<Kernel::ResetType>(reset_type)); +    timer->name = Common::StringFromFormat("timer-%08x", Core::g_app_core->GetReg(14));      CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(timer)));      LOG_TRACE(Kernel_SVC, "called reset_type=0x%08X : created handle=0x%08X", reset_type, | 
