Files
go-serial/serial_bsd.go
2023-08-09 18:27:06 +02:00

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)
}