Go 中的IOCTL 實作
問題:
問題:#define MAJOR_NUM 100 #define IOCTL_MBOX_PROPERTY _IOWR(MAJOR_NUM, 0, char *) static int mbox_property(int file_desc, void *buf){ int ret_val = ioctl(file_desc, IOCTL_MBOX_PROPERTY, buf); return ret_val; }在翻譯中涉及的C 碼時到Go,轉換以下 C時會出現問題code:
func mBoxProperty(f *os.File, buf [256]int64) { err := Ioctl(f.Fd(), IOWR(100, 0, 8), uintptr(unsafe.Pointer(&buf[0]))) if err != nil { log.Fatalln("mBoxProperty() : ", err) } } func Ioctl(fd, op, arg uintptr) error { _, _, ep := syscall.Syscall(syscall.SYS_IOCTL, fd, op, arg) if ep != 0 { return syscall.Errno(ep) } return nil } func IOWR(t, nr, size uintptr) uintptr { return IOC(IocRead|IocWrite, t, nr, size) } func IOC(dir, t, nr, size uintptr) uintptr { return (dir << IocDirshift) | (t << IocTypeshift) | (nr << IocNrshift) | (size << IocSizeshift) }對應的 Go 代碼:
會導致「參數無效」錯誤。潛在的問題是什麼以及如何解決?
答案:以上是在 Go 中實作 `ioctl()` 時如何解決「無效參數」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!