forked from rogchap/v8go
-
Notifications
You must be signed in to change notification settings - Fork 7
/
cpuprofile.go
55 lines (44 loc) · 1.3 KB
/
cpuprofile.go
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
47
48
49
50
51
52
53
54
55
// Copyright 2021 the v8go contributors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package v8go
/*
#include "v8go.h"
*/
import "C"
import "time"
type CPUProfile struct {
p *C.CPUProfile
// The CPU profile title.
title string
// root is the root node of the top down call tree.
root *CPUProfileNode
// startTimeOffset is the time when the profile recording was started
// since some unspecified starting point.
startTimeOffset time.Duration
// endTimeOffset is the time when the profile recording was stopped
// since some unspecified starting point.
// The point is equal to the starting point used by startTimeOffset.
endTimeOffset time.Duration
}
// Returns CPU profile title.
func (c *CPUProfile) GetTitle() string {
return c.title
}
// Returns the root node of the top down call tree.
func (c *CPUProfile) GetTopDownRoot() *CPUProfileNode {
return c.root
}
// Returns the duration of the profile.
func (c *CPUProfile) GetDuration() time.Duration {
return c.endTimeOffset - c.startTimeOffset
}
// Deletes the profile and removes it from CpuProfiler's list.
// All pointers to nodes previously returned become invalid.
func (c *CPUProfile) Delete() {
if c.p == nil {
return
}
C.CPUProfileDelete(c.p)
c.p = nil
}