]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/runtime.go
runtime: move all parfor-related code to parfor.go
[gostls13.git] / src / runtime / runtime.go
1 // Copyright 2009 The Go Authors.  All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package runtime
6
7 import _ "unsafe" // for go:linkname
8
9 //go:generate go run wincallback.go
10
11 var ticks struct {
12         lock mutex
13         pad  uint32 // ensure 8-byte alignment of val on 386
14         val  uint64
15 }
16
17 var tls0 [8]uintptr // available storage for m0's TLS; not necessarily used; opaque to GC
18
19 // Note: Called by runtime/pprof in addition to runtime code.
20 func tickspersecond() int64 {
21         r := int64(atomicload64(&ticks.val))
22         if r != 0 {
23                 return r
24         }
25         lock(&ticks.lock)
26         r = int64(ticks.val)
27         if r == 0 {
28                 t0 := nanotime()
29                 c0 := cputicks()
30                 usleep(100 * 1000)
31                 t1 := nanotime()
32                 c1 := cputicks()
33                 if t1 == t0 {
34                         t1++
35                 }
36                 r = (c1 - c0) * 1000 * 1000 * 1000 / (t1 - t0)
37                 if r == 0 {
38                         r++
39                 }
40                 atomicstore64(&ticks.val, uint64(r))
41         }
42         unlock(&ticks.lock)
43         return r
44 }
45
46 func makeStringSlice(n int) []string {
47         return make([]string, n)
48 }
49
50 var envs []string
51 var argslice []string
52
53 //go:linkname syscall_runtime_envs syscall.runtime_envs
54 func syscall_runtime_envs() []string { return envs }
55
56 //go:linkname os_runtime_args os.runtime_args
57 func os_runtime_args() []string { return argslice }