aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/os1_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/os1_windows.go')
-rw-r--r--src/runtime/os1_windows.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/runtime/os1_windows.go b/src/runtime/os1_windows.go
index f608b4ad80..d0120347db 100644
--- a/src/runtime/os1_windows.go
+++ b/src/runtime/os1_windows.go
@@ -284,9 +284,18 @@ func newosproc(mp *m, stk unsafe.Pointer) {
func mpreinit(mp *m) {
}
+//go:nosplit
func msigsave(mp *m) {
}
+//go:nosplit
+func msigrestore(mp *m) {
+}
+
+//go:nosplit
+func sigblock() {
+}
+
// Called to initialize a new m (including the bootstrap m).
// Called on the new thread, can not allocate memory.
func minit() {
@@ -296,6 +305,7 @@ func minit() {
}
// Called from dropm to undo the effect of an minit.
+//go:nosplit
func unminit() {
tp := &getg().m.thread
stdcall1(_CloseHandle, *tp)