2019-09-11 14:06:05 +00:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-07-30 14:28:58 -07:00
|
|
|
//go:build !darwin && !linux
|
2019-09-11 14:06:05 +00:00
|
|
|
|
2020-07-27 22:27:54 -07:00
|
|
|
package pprof
|
2019-09-11 14:06:05 +00:00
|
|
|
|
2020-07-27 22:27:54 -07:00
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Stub call for platforms that don't support rusage.
|
|
|
|
func addMaxRSS(w io.Writer) {
|
|
|
|
}
|