From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [125.160.106.238]) by gnuweeb.org (Postfix) with ESMTPSA id 9B8D580631; Tue, 26 Jul 2022 09:49:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1658828981; bh=h+UyL3Y0CwV/mlfP72kZqjb7K7ZRYibA0lhtAU8GBnU=; h=From:To:Cc:Subject:Date:From; b=MrwUbPaBaxT1HR9XYnSh6TFfQhW3DnPRbsm1pLZxJYcyBISnEUpTuXPWkgU30zo3p VGmMCvrS+/jZJAznYOpBCzQHaUTDm7CLubIGs1jMBh83DAcBJkKnrR0IH2ZtHfTC0w CbVzTDlUnxw9DGe5nIuBdsKNt/LcPeqHEozCueExrjWuZbvFWwwcbi42/owc1HVSMF qAk8cMs3dTgpcVNUKuYw7+ukopdQ9bbPcraXvO7c3mlG4VQuoNdPKuKbbcHxvrA+5s HrBiQxk4FoRMe1Ch5J7iA1CkiKgtXoCLusuhY5eZFXOzDg8i2FcJgc2M/2NPfUsEg/ XfKd5IsPXBpZg== From: Ammar Faizi To: Jens Axboe Cc: Pavel Begunkov , io-uring Mailing List , GNU/Weeb Mailing List , Ammar Faizi Subject: [PATCH liburing] .gitignore: Add poll-bench and send-zerocopy examples Date: Tue, 26 Jul 2022 16:49:08 +0700 Message-Id: <20220726094908.226477-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Previous commits add poll-bench and send-zerocopy examples but forgot to add the compiled files to .gitignore. Add them to .gitignore to make "git status" clean after build. Cc: Pavel Begunkov Signed-off-by: Ammar Faizi --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index b5acffd..4b63a91 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,8 @@ /examples/io_uring-test /examples/link-cp /examples/ucontext-cp +/examples/poll-bench +/examples/send-zerocopy /test/*.t /test/*.dmesg base-commit: 30a20795d7e4f300c606c6a2aa0a4c9492882d1d -- Ammar Faizi