# Copyright (c) 2023 Yuki Kimoto
# MIT License

class Sys::Poll::Constant {
  version_from Sys;
  
  # Class Methods
  native static method POLLERR : int ();

  native static method POLLHUP : int ();

  native static method POLLIN : int ();

  native static method POLLNVAL : int ();

  native static method POLLOUT : int ();

  native static method POLLPRI : int ();

  native static method POLLRDBAND : int ();

  native static method POLLRDNORM : int ();

  native static method POLLWRBAND : int ();

  native static method POLLWRNORM : int ();
}