コード例 #1
0
ファイル: sceKernelMsgPipe.cpp プロジェクト: libretro/PSP1
static bool __KernelMsgPipeThreadSortPriority(MsgPipeWaitingThread thread1, MsgPipeWaitingThread thread2)
{
	return __KernelThreadSortPriority(thread1.threadID, thread2.threadID);
}
コード例 #2
0
ファイル: sceKernelMemory.cpp プロジェクト: Chalky2013/ppsspp
bool __VplThreadSortPriority(VplWaitingThread thread1, VplWaitingThread thread2)
{
	return __KernelThreadSortPriority(thread1.threadID, thread2.threadID);
}
コード例 #3
0
ファイル: sceKernelMsgPipe.cpp プロジェクト: PewnyPL/ppsspp
bool __KernelMsgPipeThreadSortPriority(MsgPipeWaitingThread thread1, MsgPipeWaitingThread thread2)
{
	return __KernelThreadSortPriority(thread1.id, thread2.id);
}