From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 41CF21F770 for ; Wed, 2 Jan 2019 20:50:33 +0000 (UTC) From: Eric Wong To: sleepy-penguin@bogomips.org Subject: [PATCH] splice.c: remove reference to non-existent function Date: Wed, 2 Jan 2019 20:50:33 +0000 Message-Id: <20190102205033.19902-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: There is no "trysplice" method, here. Instead, we rely on the F_NONBLOCK and "exception: false" keyword argument. --- ext/sleepy_penguin/splice.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/sleepy_penguin/splice.c b/ext/sleepy_penguin/splice.c index ab8c1ff..c9fe618 100644 --- a/ext/sleepy_penguin/splice.c +++ b/ext/sleepy_penguin/splice.c @@ -130,7 +130,6 @@ void sleepy_penguin_init_splice(void) * out of them. * * It is highly recommended this flag be set - * (or SleepyPenguin.trysplice used) * whenever splicing from a socket into a pipe unless there is * another (native) thread or process doing a blocking read on that * pipe. Otherwise it is possible to block a single-threaded process -- EW