commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnumach] 20/56: track the console buffer usage with a boolean instead o


From: Samuel Thibault
Subject: [gnumach] 20/56: track the console buffer usage with a boolean instead of an int
Date: Sat, 28 Sep 2013 12:43:14 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch master
in repository gnumach.

commit cbe805c2122b8b46b1fbe7c6b1d8f69cd22fb901
Author: Marin Ramesa <address@hidden>
Date:   Wed Sep 11 12:27:48 2013 +0200

    track the console buffer usage with a boolean instead of an int
    
    A variable that keeps track of the console buffer usage should never receive
    values other than 0 and 1, so constrain it's value range to boolean. Plus, 
it's
    more readable this way.
    
    * device/cons.c (consbufused): Use boolean_t instead of an int.
---
 device/cons.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/device/cons.c b/device/cons.c
index f26f22c..a220723 100644
--- a/device/cons.c
+++ b/device/cons.c
@@ -54,7 +54,7 @@ void  (*romputc)() = 0;
  */
 static char consbuf[CONSBUFSIZE] = { 0 };
 static char *consbp = consbuf;
-static int consbufused = 0;
+static boolean_t consbufused = FALSE;
 #endif
 
 void
@@ -106,7 +106,7 @@ cninit()
                                if (++cbp == &consbuf[CONSBUFSIZE])
                                        cbp = consbuf;
                        } while (cbp != consbp);
-                       consbufused = 0;
+                       consbufused = FALSE;
                }
 #endif
                cn_inited = 1;
@@ -171,9 +171,9 @@ cnputc(c)
        }
 #if CONSBUFSIZE > 0
        else {
-               if (consbufused == 0) {
+               if (consbufused == FALSE) {
                        consbp = consbuf;
-                       consbufused = 1;
+                       consbufused = TRUE;
                        memset(consbuf, 0, CONSBUFSIZE);
                }
                *consbp++ = c;

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/gnumach.git



reply via email to

[Prev in Thread] Current Thread [Next in Thread]