forked from suyu/suyu
Merge pull request #4439 from lioncash/cpu
cpu_manager: Remove redundant std::function declarations
This commit is contained in:
commit
0ca42c806f
1 changed files with 3 additions and 3 deletions
|
@ -52,15 +52,15 @@ void CpuManager::Shutdown() {
|
||||||
}
|
}
|
||||||
|
|
||||||
std::function<void(void*)> CpuManager::GetGuestThreadStartFunc() {
|
std::function<void(void*)> CpuManager::GetGuestThreadStartFunc() {
|
||||||
return std::function<void(void*)>(GuestThreadFunction);
|
return GuestThreadFunction;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::function<void(void*)> CpuManager::GetIdleThreadStartFunc() {
|
std::function<void(void*)> CpuManager::GetIdleThreadStartFunc() {
|
||||||
return std::function<void(void*)>(IdleThreadFunction);
|
return IdleThreadFunction;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::function<void(void*)> CpuManager::GetSuspendThreadStartFunc() {
|
std::function<void(void*)> CpuManager::GetSuspendThreadStartFunc() {
|
||||||
return std::function<void(void*)>(SuspendThreadFunction);
|
return SuspendThreadFunction;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CpuManager::GuestThreadFunction(void* cpu_manager_) {
|
void CpuManager::GuestThreadFunction(void* cpu_manager_) {
|
||||||
|
|
Loading…
Reference in a new issue