禁用 DSUSP - 终端控制

发布于 2024-12-10 09:22:15 字数 135 浏览 0 评论 0原文

首先,什么是DSUSP?

我尝试使用以下代码行禁用它:

tntty.c_cc[VDSUSP] = _POSIX_VDISABLE;  

但我收到错误“VDSUSP 未声明”

Firstly, what is DSUSP?

I'm trying to disable it using the following code line:

tntty.c_cc[VDSUSP] = _POSIX_VDISABLE;  

But I get the error that "VDSUSP is undeclared"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨巷深深 2024-12-17 09:22:15

Linux termios(3) 手册页对此进行了这样的描述(强调我的):

VDSUSP(POSIX 中不支持;Linux 下不支持;031、EM、
Ctrl-Y) 延迟挂起字符:发送 SIGTSTP 信号
字符由用户程序读取。当 IEXTEN 时被识别
和ISIG设置,系统支持作业控制,然后不
作为输入传递。

由于这不是 POSIX 指定的索引,因此您应该测试它是否存在,并且仅尝试在定义它的平台上禁用它:

#ifdef VDSUSP
tntty.c_cc[VDSUSP] = _POSIX_VDISABLE;  
#endif

The Linux termios(3) man page describes it thus (emphasis mine):

VDSUSP (not in POSIX; not supported under Linux; 031, EM,
Ctrl-Y) Delayed suspend character: send SIGTSTP signal when the
character is read by the user program. Recognized when IEXTEN
and ISIG are set, and the system supports job control, and then not
passed as input.

As this isn't a POSIX-specified index, you should test for its presence and only attempt to disable it on platforms where it is defined:

#ifdef VDSUSP
tntty.c_cc[VDSUSP] = _POSIX_VDISABLE;  
#endif
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文