diff options
Diffstat (limited to 'src/runtime/tls_stub.go')
-rw-r--r-- | src/runtime/tls_stub.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/runtime/tls_stub.go b/src/runtime/tls_stub.go new file mode 100644 index 0000000..7bdfc6b --- /dev/null +++ b/src/runtime/tls_stub.go @@ -0,0 +1,10 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build (windows && !amd64) || !windows + +package runtime + +//go:nosplit +func osSetupTLS(mp *m) {} |