https://github.com/junka/ioctl
https://github.com/junka/ioctl
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/junka/ioctl
- Owner: junka
- License: bsd-2-clause
- Created: 2021-04-06T06:54:45.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-08T13:54:06.000Z (about 5 years ago)
- Last Synced: 2025-02-01T14:19:20.152Z (over 1 year ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ioctl
the syscall ```ioctl()``` maniplates the underlay deviceparameters of special files.
see the manpage of ioctl to read more.
this project aims to implements ioctl in golang like
```
func Ioctl(fd int, request uint64, arg ...uintptr) error
```