10 lines
209 B
Go
10 lines
209 B
Go
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
|
|
|
|
package serial
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func (port *unixPort) Drain() error {
|
|
return unix.IoctlSetInt(port.handle, unix.TIOCDRAIN, 0)
|
|
}
|