Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ブロッキング IO (sysread および syswrite) を使用する perl スクリプトがあります。
このスクリプトは、TCP ポートでリッスンしている xinetd サーバーに接続されています。クライアントが切断されたときに xinetd が SIGHUP を出すと聞いたので、次のようにしてみました:
$SIG{HUP} = sub { die; };
ps -Aを実行すると、多くのプロセスが残っています。
何か案は?