ChinaUnix.net
相关文章推荐:

termios 非阻塞

我想设置成telnet客户端那样,但是怎么搞都搞不定啊…… 有没有大哥指条明路? 谢谢

by chopin1998 - C/C++ - 2007-03-26 08:47:51 阅读(887) 回复(0)

相关讨论

#include ; #include ; #include ; int main(void) { struct termios termold; tcgetattr(0,&termold); } 在redhat下编译报"storage size of `termold' isn't known"的错,这是为什么? 谢谢

by season7 - C/C++ - 2004-07-19 17:24:24 阅读(779) 回复(1)

POSIX::termios new Create a new termios object. This object will be destroyed automatically when it is no longer needed. A termios object corresponds to the termios C struct. new() mallocs a new one, getattr() fills it from a file descriptor, and setattr() sets a file descriptor's parameters to match termios' contents. $termios = POSIX::termios->new; getattr Get terminal control attribu...

by huhuegg - Perl - 2008-12-16 15:41:17 阅读(2224) 回复(4)

请问用termios和terinfo对终端进行控制有什么区别阿?能不能系统的解释一下阿 ?谢谢

by hsygj - 程序开发 - 2006-05-21 20:14:04 阅读(678) 回复(2)