GSP_GPU: Fix Shared memory & Create Event
This commit is contained in:
parent
c8c3a94b20
commit
e33aac9b2f
1 changed files with 4 additions and 4 deletions
|
@ -389,11 +389,11 @@ const Interface::FunctionInfo FunctionTable[] = {
|
||||||
// Interface class
|
// Interface class
|
||||||
|
|
||||||
Interface::Interface() {
|
Interface::Interface() {
|
||||||
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
g_interrupt_event = Kernel::Event::Create(RESETTYPE_ONESHOT, "GSP_GPU:g_interrupt_event").MoveFrom();
|
||||||
|
g_shared_memory = Kernel::SharedMemory::Create("GSP_GPU:g_shared_memory").MoveFrom();
|
||||||
g_interrupt_event = 0;
|
|
||||||
g_shared_memory = 0;
|
|
||||||
g_thread_id = 1;
|
g_thread_id = 1;
|
||||||
|
|
||||||
|
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
Loading…
Reference in a new issue