We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以下のシグナルハンドリングを実装する。
signal(SIGQUIT, &SIG_IGN) == SIG_ERR
The text was updated successfully, but these errors were encountered:
Ctrl-C(SIGINT)が入力された際には、終了ステータスがEXIT_FAILUREになる。
Ctrl-C(SIGINT)
EXIT_FAILURE
$ # <- Input Ctrl-C $ echo $? 1
Sorry, something went wrong.
こんな感じで行けるか? 環境変数更新のタイミングは要検証
while(1) { if (g_signal == SIGINT) register_env_var_from_literal(); ... }
moromin
takumihara
No branches or pull requests
目的
以下のシグナルハンドリングを実装する。
signal(SIGQUIT, &SIG_IGN) == SIG_ERR
参考サイト
The text was updated successfully, but these errors were encountered: