summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/shirou/gopsutil/cpu/cpu_darwin.go')
-rw-r--r--vendor/github.com/shirou/gopsutil/cpu/cpu_darwin.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin.go b/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin.go
index 001517e..74d2737 100644
--- a/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin.go
+++ b/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin.go
@@ -45,7 +45,7 @@ func InfoWithContext(ctx context.Context) ([]InfoStat, error) {
if err != nil {
return ret, err
}
- out, err := invoke.Command(sysctl, "machdep.cpu")
+ out, err := invoke.CommandWithContext(ctx, sysctl, "machdep.cpu")
if err != nil {
return ret, err
}
@@ -99,7 +99,7 @@ func InfoWithContext(ctx context.Context) ([]InfoStat, error) {
// Use the rated frequency of the CPU. This is a static value and does not
// account for low power or Turbo Boost modes.
- out, err = invoke.Command(sysctl, "hw.cpufrequency")
+ out, err = invoke.CommandWithContext(ctx, sysctl, "hw.cpufrequency")
if err != nil {
return ret, err
}