public int tcsendbreak(int fd, int duration) {
   // If duration is not zero, it sends zero-valued bits for duration*N seconds,
   // where N is at least 0.25, and not more than 0.5.
   return m_Clib.tcsendbreak(fd, duration / 250);
 }