gpt4 book ai didi

不能在 Windows 中使用 tcgetpgrp()?

转载 作者:太空宇宙 更新时间:2023-11-04 04:48:53 24 4
gpt4 key购买 nike

我正在尝试在 Windows 中通过 C 构建一个简单的 shell,我的平台不是很好,所以我搜索并从下面的一些代码开始:

shell_terminal = STDIN_FILENO;
shell_is_interactive = isatty (shell_terminal);
if (shell_is_interactive)
{
/* Loop until we are in the foreground. */
while (tcgetpgrp (shell_terminal) != (shell_pgid = getpgrp ()))
kill (- shell_pgid, SIGTTIN);

/* Ignore interactive and job-control signals. */
signal (SIGINT, SIG_IGN);
signal (SIGQUIT, SIG_IGN);
signal (SIGTSTP, SIG_IGN);
signal (SIGTTIN, SIG_IGN);
signal (SIGTTOU, SIG_IGN);
signal (SIGCHLD, SIG_IGN);

/* Put ourselves in our own process group. */
shell_pgid = getpid ();
if (setpgid (shell_pgid, shell_pgid) < 0)
{
perror ("Couldn't put the shell in its own process group");
exit (1);
}

/* Grab control of the terminal. */
tcsetpgrp (shell_terminal, shell_pgid);

/* Save default terminal attributes for shell. */
tcgetattr (shell_terminal, &shell_tmodes);
}

但我有一些错误:

[Error] 'tcgetpgrp' was not declared in this scope
[Error] 'getpgrp' was not declared in this scope
[Error] 'SIGTTIN' was not declared in this scope
[Error] 'kill' was not declared in this scope
...

我认为我的环境有问题或缺少某些库。我的问题是什么?谢谢!

最佳答案

因为,tcgetpgrp函数,未由 ISO C standard 定义, 它必须被所有操作系统支持,而是由 IEEE POSIX 定义的Unix 最常支持的标准系统环境。

例如:

<unistd.h> ,这是编译这个程序所必需的,是由 POSIX 定义的头文件。标准,不是 ISO C标准。

要么升级到POSIX兼容系统,或使用 Windows API , 为 windows 平台提供类似的服务集。

关于不能在 Windows 中使用 tcgetpgrp()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18031289/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com