in reply to Re^7: Inline C + IO::Handle
in thread FCGI + Inline::C fast stream out!

Hmmm... I misled... :)
I have to print text to fastcgi stream from C code, not perl code. Maybe i something not understand :(

Replies are listed 'Best First'.
Re^9: Inline C + IO::Handle
by ikegami (Patriarch) on Apr 18, 2009 at 06:20 UTC

    No, I understand. Let me rephrase. It's not working because you are doing the XS equivalent of

    PRINT($out, "TEXT");

    when you want to do the XS equivalent of

    tied(*$out)->PRINT("TEXT");