diff options
| author | Russ Cox <rsc@golang.org> | 2010-01-25 18:52:55 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2010-01-25 18:52:55 -0800 |
| commit | 718be3215ffd6f8d4bfd8fa836cb2799d3366501 (patch) | |
| tree | 5de75ffa5504b39acc53f938e513f3261b173454 /src/pkg/runtime/sigqueue.cgo | |
| parent | c90b05bf7dab3a03a018f018d56b456b7ce7c2c5 (diff) | |
| download | go-718be3215ffd6f8d4bfd8fa836cb2799d3366501.tar.xz | |
in C and asm, replace pkg·name with ·name
(eliminate assumption of package global name space,
make code easier to move between packages).
R=r
CC=golang-dev
https://golang.org/cl/194072
Diffstat (limited to 'src/pkg/runtime/sigqueue.cgo')
| -rw-r--r-- | src/pkg/runtime/sigqueue.cgo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/sigqueue.cgo b/src/pkg/runtime/sigqueue.cgo index c3751c5d27..46a3b1274a 100644 --- a/src/pkg/runtime/sigqueue.cgo +++ b/src/pkg/runtime/sigqueue.cgo @@ -78,9 +78,9 @@ sigsend(int32 s) // Called to receive a bitmask of queued signals. func Sigrecv() (m uint32) { - runtime·entersyscall(); + ·entersyscall(); notesleep(&sig); - runtime·exitsyscall(); + ·exitsyscall(); noteclear(&sig); for(;;) { m = sig.mask; |
