forked from gugemichael/nimo4go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime.go
More file actions
46 lines (40 loc) · 673 Bytes
/
Copy pathruntime.go
File metadata and controls
46 lines (40 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package nimo
import (
"time"
"runtime"
"strconv"
"bytes"
)
func GoRoutine(function func()) {
go func() {
function()
}()
}
func GoRoutineInLoop(function func()) {
go func() {
for {
function()
}
}()
}
func GoRoutineInTimer(duration time.Duration, function func()) {
go func() {
for range time.NewTicker(duration).C {
function()
}
}()
}
func GoVarLoop(n uint64, function func()) {
for n != 0 {
function()
n--
}
}
func GetRoutineId() uint64 {
b := make([]byte, 64)
b = b[:runtime.Stack(b, false)]
b = bytes.TrimPrefix(b, []byte("goroutine "))
b = b[:bytes.IndexByte(b, ' ')]
id, _ := strconv.ParseUint(string(b), 10, 64)
return id
}