CSPspEmu.Hle.Modules.threadman.ThreadManForUser.sceKernelChangeCurrentThreadAttr C# (CSharp) Метод

sceKernelChangeCurrentThreadAttr() приватный Метод

private sceKernelChangeCurrentThreadAttr ( PspThreadAttributes RemoveAttributes, PspThreadAttributes AddAttributes ) : int
RemoveAttributes PspThreadAttributes
AddAttributes PspThreadAttributes
Результат int
		public int sceKernelChangeCurrentThreadAttr(PspThreadAttributes RemoveAttributes, PspThreadAttributes AddAttributes)
		{
			ThreadManager.Current.Attribute &= ~RemoveAttributes;
			ThreadManager.Current.Attribute |= AddAttributes;
			return 0;
		}
ThreadManForUser