gpt4 book ai didi

linux - 如何在 perl 中使用 O_ASYNC 和 fcntl?

转载 作者:IT王子 更新时间:2023-10-29 01:16:51 27 4
gpt4 key购买 nike

我想使用 O_ASYNC 选项,当管道可以读取时,SIGIO 的处理程序将运行。

但是下面的代码是行不通的。任何人都可以帮助我吗?

#!/bin/env perl
use Fcntl;
$SIG{IO}= sub {
print "catch SIGIO!\n";
};

my $flags=0;

open(FH,"-|","sleep 4 ;echo aaa") or die "$!";

fcntl(FH,F_GETFL,$flags) or die "$!";
fcntl(FH,F_SETFL,$flags | O_NONBLOCK | O_ASYNC) or die "$!";

sleep(5);

print "complete\n";

我的perl版本是5.16.1,操作系统是Redhat 5u4,kernel 2.6.18,x86_64

最佳答案

在 Linux 下,您必须同时请求异步通知 (O_ASYNC) 和指定接收者 (F_SETOWN)。因此,您只需在示例中添加一行即可使其正常工作:

#!/bin/env perl

use Fcntl;

$SIG{IO}= sub {
print "catch SIGIO!\n";
};

my $flags=0;

open(FH,"-|","sleep 4 ;echo aaa") or die "$!";

fcntl(FH,F_GETFL,$flags) or die "$!";
fcntl(FH,F_SETFL,$flags | O_NONBLOCK | O_ASYNC) or die "$!";
fcntl(FH,F_SETOWN,0 + $$) or die "$!"; # <-- Note that we force $$ to be numeric

sleep(5);

print "complete\n";

运行上面的代码:

$ perl so-12640993.pl
catch SIGIO!
complete

关于linux - 如何在 perl 中使用 O_ASYNC 和 fcntl?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12640993/

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