Ejemplo n.º 1
0
 public int tcgetattr(int fd, Termios termios) {
   termios t = new termios();
   int ret = m_Clib.tcgetattr(fd, t);
   t.update(termios);
   return ret;
 }