mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
8e0910ab3e
Also add a cross compile script to test always cross compilation for some well known platforms and architectures , we support out of box compilation of these platforms even if we don't make an official release build. This script is to avoid regressions in this area when we add platform dependent code.
34 lines
909 B
Go
34 lines
909 B
Go
// +build darwin freebsd openbsd netbsd dragonfly windows
|
|
|
|
/*
|
|
* Minio Cloud Storage, (C) 2019 Minio, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package cpu
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
"time"
|
|
)
|
|
|
|
func newCounter() (counter, error) {
|
|
return counter{}, fmt.Errorf("cpu metrics not implemented for %s platform", runtime.GOOS)
|
|
}
|
|
|
|
func (c counter) now() time.Time {
|
|
return time.Time{}
|
|
}
|