Viewing File: /usr/local/cpanel/3rdparty/perl/536/cpanel-lib/IO/SigGuard/syswrite.pm

package IO::SigGuard;

sub syswrite {
    $result = ( (@_ == 2) ? CORE::syswrite( $_[0], $_[1] ) : (@_ == 3) ? CORE::syswrite( $_[0], $_[1], $_[2] ) : (@_ == 4) ? CORE::syswrite( $_[0], $_[1], $_[2], $_[3] ) : die "Wrong args count! syswrite(@_)" );

    #EINTR means the file pointer is unchanged.
    goto &syswrite if !defined $result && $! == Errno::EINTR();

    return $result;
}

1;
Back to Directory File Manager