linux_linux.go 558 B

1234567891011
  1. /* linux is a package that is a Go port of the functionality in
  2. * the header directory <linux/XXX> as far as is needed for input event
  3. * handing. Defines have been makked either to consts
  4. * or functions in case they were macros with parameters.
  5. * Structs have been ported attempting to have the same size in Go and in C.
  6. * This package is not documented, but the names are, as far as is possible,
  7. * keeping go export rule into consideration, the same as in C.
  8. * Please see the Linux kernel documentation for more explanations.
  9. */
  10. package linux