Lines Matching full:timestamp
9 // in a compact form. A precise nanosecond-precision timestamp and a stack
20 traceEvBatch = 1 // start of per-P batch of events [pid, timestamp]
23 traceEvGomaxprocs = 4 // current value of GOMAXPROCS [timestamp, GOMAXPROCS, stack id]
24 traceEvProcStart = 5 // start of P [timestamp, thread id]
25 traceEvProcStop = 6 // stop of P [timestamp]
26 traceEvGCStart = 7 // GC start [timestamp, stack id]
27 traceEvGCDone = 8 // GC done [timestamp]
28 traceEvGCScanStart = 9 // GC scan start [timestamp]
29 traceEvGCScanDone = 10 // GC scan done [timestamp]
30 traceEvGCSweepStart = 11 // GC sweep start [timestamp, stack id]
31 traceEvGCSweepDone = 12 // GC sweep done [timestamp]
32 traceEvGoCreate = 13 // goroutine creation [timestamp, new goroutine id, start PC, stack id]
33 traceEvGoStart = 14 // goroutine starts running [timestamp, goroutine id]
34 traceEvGoEnd = 15 // goroutine ends [timestamp]
35 traceEvGoStop = 16 // goroutine stops (like in select{}) [timestamp, stack]
36 traceEvGoSched = 17 // goroutine calls Gosched [timestamp, stack]
37 traceEvGoPreempt = 18 // goroutine is preempted [timestamp, stack]
38 traceEvGoSleep = 19 // goroutine calls Sleep [timestamp, stack]
39 traceEvGoBlock = 20 // goroutine blocks [timestamp, stack]
40 traceEvGoUnblock = 21 // goroutine is unblocked [timestamp, goroutine id, stack]
41 traceEvGoBlockSend = 22 // goroutine blocks on chan send [timestamp, stack]
42 traceEvGoBlockRecv = 23 // goroutine blocks on chan recv [timestamp, stack]
43 traceEvGoBlockSelect = 24 // goroutine blocks on select [timestamp, stack]
44 traceEvGoBlockSync = 25 // goroutine blocks on Mutex/RWMutex [timestamp, stack]
45 traceEvGoBlockCond = 26 // goroutine blocks on Cond [timestamp, stack]
46 traceEvGoBlockNet = 27 // goroutine blocks on network [timestamp, stack]
47 traceEvGoSysCall = 28 // syscall enter [timestamp, stack]
48 traceEvGoSysExit = 29 // syscall exit [timestamp, goroutine id, real timestamp]
49 traceEvGoSysBlock = 30 // syscall blocks [timestamp]
52 traceEvHeapAlloc = 33 // memstats.heap_live change [timestamp, heap_alloc]
53 traceEvNextGC = 34 // memstats.next_gc change [timestamp, next_gc]
55 traceEvFutileWakeup = 36 // denotes that the previous wakeup of this goroutine was futile [timestamp]
61 // This makes absolute values of timestamp diffs smaller,
463 const maxSize = 2 + 5*traceBytesPerNumber // event type, length, sequence, timestamp, stack id and two add params
836 // The timestamp was obtained during a previous tracing session, ignore.