Cleanup some XThread code

This commit is contained in:
Dr. Chat
2015-06-22 21:13:49 -05:00
parent 75ef95b1b8
commit bafd448dd8
3 changed files with 80 additions and 42 deletions

View File

@@ -41,14 +41,14 @@ namespace kernel {
// RtlGetLastError:
// lwz r11, 0x150(r13)
// if (r11 != 0) {
// if (r11 == 0) {
// lwz r11, 0x100(r13)
// stw r3, 0x160(r11)
// }
// RtlSetLastError:
// lwz r11, 0x150(r13)
// if (r11 != 0) {
// if (r11 == 0) {
// lwz r11, 0x100(r13)
// stw r3, 0x160(r11)
// }
@@ -56,7 +56,7 @@ namespace kernel {
// RtlSetLastNTError:
// r3 = RtlNtStatusToDosError(r3)
// lwz r11, 0x150(r13)
// if (r11 != 0) {
// if (r11 == 0) {
// lwz r11, 0x100(r13)
// stw r3, 0x160(r11)
// }