diff options
Diffstat (limited to 'src/pkg/runtime/lock_sema.c')
| -rw-r--r-- | src/pkg/runtime/lock_sema.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/lock_sema.c b/src/pkg/runtime/lock_sema.c index 98eea91d5f..71283493ed 100644 --- a/src/pkg/runtime/lock_sema.c +++ b/src/pkg/runtime/lock_sema.c @@ -34,7 +34,7 @@ enum }; void -runtime·lock(Lock *l) +runtime·lock(Mutex *l) { uintptr v; uint32 i, spin; @@ -90,7 +90,7 @@ unlocked: } void -runtime·unlock(Lock *l) +runtime·unlock(Mutex *l) { uintptr v; M *mp; |
