Exemplo n.º 1
0
Arquivo: udev.go Projeto: jessta/udev
func (d Device) Driver() string {
	return C.GoString(C.udev_device_get_driver(d.ptr))
}
Exemplo n.º 2
0
// Driver returns the driver for the receiver
func (d *Device) Driver() string {
	d.lock()
	defer d.unlock()
	return C.GoString(C.udev_device_get_driver(d.ptr))
}