summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/os_plan9_386.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2013-03-15 00:00:02 -0400
committerRuss Cox <rsc@golang.org>2013-03-15 00:00:02 -0400
commit14690624a3666708f3dcd3ef9a58628cd789905a (patch)
treed3f8e6f28c2b664eeb1073fbf3c46982ee020f75 /src/pkg/runtime/os_plan9_386.c
parent2715955915937f81bad74a4aca562ca0c46d304c (diff)
downloadgo-14690624a3666708f3dcd3ef9a58628cd789905a.tar.gz
os/signal: add Stop, be careful about SIGHUP
Fixes issue 4268. Fixes issue 4491. R=golang-dev, nightlyone, fullung, r CC=golang-dev https://codereview.appspot.com/7546048
Diffstat (limited to 'src/pkg/runtime/os_plan9_386.c')
-rw-r--r--src/pkg/runtime/os_plan9_386.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pkg/runtime/os_plan9_386.c b/src/pkg/runtime/os_plan9_386.c
index 17bc11749..3d8b43a5d 100644
--- a/src/pkg/runtime/os_plan9_386.c
+++ b/src/pkg/runtime/os_plan9_386.c
@@ -112,6 +112,12 @@ runtime·sigenable(uint32 sig)
}
void
+runtime·sigdisable(uint32 sig)
+{
+ USED(sig);
+}
+
+void
runtime·resetcpuprofiler(int32 hz)
{
// TODO: Enable profiling interrupts.