| 498 | } |
| 499 | |
| 500 | VAddr Thread::GetCommandBufferAddress() const { |
| 501 | // Offset from the start of TLS at which the IPC command buffer begins. |
| 502 | constexpr u32 command_header_offset = 0x80; |
| 503 | return GetTLSAddress() + command_header_offset; |
| 504 | } |
| 505 | |
| 506 | ThreadManager::ThreadManager(Kernel::KernelSystem& kernel, u32 core_id) : kernel(kernel) { |
| 507 | ThreadWakeupEventType = kernel.timing.RegisterEvent( |
no outgoing calls
no test coverage detected