consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
This commit is contained in:
+1
-1
@@ -7,5 +7,5 @@ void __lock(volatile int *l)
|
||||
* assignment to optimize non-pathological code with no contention. */
|
||||
while (a_xchg(l, 1))
|
||||
if (spins) spins--, a_spin();
|
||||
else __syscall(__NR_sched_yield);
|
||||
else __syscall(SYS_sched_yield);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user