posix_mq RubyGem user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: ruby-posix-mq@bogomips.org
Subject: [PATCH] favor comparisons against zero instead of -1
Date: Sun, 11 Jan 2015 03:19:33 +0000	[thread overview]
Message-ID: <1420946373-17909-1-git-send-email-e@80x24.org> (raw)

This should allow faster instructions to be used in some cases.
Technically this may be less pedantically correct, but there is
enough existing code out there which does the same thing to
discourage kernel/libc developers from overloading negative
return values.

...And glibc even favors comparison against zero, too.
---
 ext/posix_mq/posix_mq.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/ext/posix_mq/posix_mq.c b/ext/posix_mq/posix_mq.c
index 14fe819..78544c8 100644
--- a/ext/posix_mq/posix_mq.c
+++ b/ext/posix_mq/posix_mq.c
@@ -521,7 +521,7 @@ static VALUE s_unlink(VALUE self, VALUE name)
 {
 	int rv = mq_unlink(StringValueCStr(name));
 
-	if (rv == -1)
+	if (rv < 0)
 		rb_sys_fail("mq_unlink");
 
 	return INT2NUM(1);
@@ -549,7 +549,7 @@ static VALUE _unlink(VALUE self)
 	assert(TYPE(mq->name) == T_STRING && "mq->name is not a string");
 
 	rv = mq_unlink(RSTRING_PTR(mq->name));
-	if (rv == -1)
+	if (rv < 0)
 		rb_sys_fail("mq_unlink");
 
 	return self;
@@ -598,7 +598,7 @@ static VALUE _send(int sflags, int argc, VALUE *argv, VALUE self)
 
 retry:
 	WITHOUT_GVL(xsend, &x, RUBY_UBF_IO, 0);
-	if (x.retval == -1) {
+	if (x.retval < 0) {
 		if (errno == EINTR)
 			goto retry;
 		if (errno == EAGAIN && (sflags & PMQ_TRY))
@@ -632,7 +632,7 @@ static VALUE send0(VALUE self, VALUE buffer)
 
 retry:
 	WITHOUT_GVL(xsend, &x, RUBY_UBF_IO, 0);
-	if (x.retval == -1) {
+	if (x.retval < 0) {
 		if (errno == EINTR)
 			goto retry;
 		rb_sys_fail("mq_send");
@@ -814,7 +814,7 @@ static VALUE _close(VALUE self)
 	struct posix_mq *mq = get(self, 1);
 
 	if (! MQ_IO_CLOSE(mq)) {
-		if (mq_close(mq->des) == -1)
+		if (mq_close(mq->des) < 0)
 			rb_sys_fail("mq_close");
 	}
 	mq->des = MQD_INVALID;
@@ -901,12 +901,12 @@ static void my_mq_notify(mqd_t des, struct sigevent *not)
 {
 	int rv = mq_notify(des, not);
 
-	if (rv == -1) {
+	if (rv < 0) {
 		if (errno == ENOMEM) {
 			rb_gc();
 			rv = mq_notify(des, not);
 		}
-		if (rv == -1)
+		if (rv < 0)
 			rb_sys_fail("mq_notify");
 	}
 }
-- 
EW


                 reply	other threads:[~2015-01-11  3:19 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://yhbt.net/ruby_posix_mq/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1420946373-17909-1-git-send-email-e@80x24.org \
    --to=e@80x24.org \
    --cc=ruby-posix-mq@bogomips.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://yhbt.net/ruby_posix_mq.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).