mirror of
https://github.com/rwinkhart/go-winio.git
synced 2026-09-03 07:37:39 -04:00
Proper support for ETW on ARM will require additional changes in Go to support more than 16 bytes of arguments to a syscall callback. Until this work is done, the ETW package is being changed to no-op on ARM.
13 lines
285 B
Go
13 lines
285 B
Go
// +build arm 386
|
|
|
|
package etw
|
|
|
|
import (
|
|
"github.com/Microsoft/go-winio/pkg/guid"
|
|
)
|
|
|
|
// NewProviderWithID returns a nil provider on unsupported platforms.
|
|
func NewProviderWithID(name string, id *guid.GUID, callback EnableCallback) (provider *Provider, err error) {
|
|
return nil, nil
|
|
}
|