
Some minor improvements, but biggest for here is ErrPipeListenerClosed is no longer an errors.New where the string matches the text of the now exported net.ErrClosed in the stdlib, but is just assigned to net.ErrClosed directly. This should allow us to get rid of the string check for "use of closed network connection" here now.. Signed-off-by: Daniel Canter <dcanter@microsoft.com>
9 lines
481 B
Go
9 lines
481 B
Go
// Package etw provides support for TraceLogging-based ETW (Event Tracing
|
|
// for Windows). TraceLogging is a format of ETW events that are self-describing
|
|
// (the event contains information on its own schema). This allows them to be
|
|
// decoded without needing a separate manifest with event information. The
|
|
// implementation here is based on the information found in
|
|
// TraceLoggingProvider.h in the Windows SDK, which implements TraceLogging as a
|
|
// set of C macros.
|
|
package etw
|