]> Zhao Yanbai Git Server - minix.git/commitdiff
Removed debugging statements from log.c; changed PRINTF_PROC in config.h
authorBen Gras <ben@minix3.org>
Wed, 27 Jul 2005 18:49:25 +0000 (18:49 +0000)
committerBen Gras <ben@minix3.org>
Wed, 27 Jul 2005 18:49:25 +0000 (18:49 +0000)
back to LOG_PROC_NR

drivers/log/log.c
include/minix/config.h

index 7f9d0ca796a1dc6bf2587860d0f75f9e746b4f5c..fb890af90015dd45466dcbe390a824603073ddf3 100644 (file)
@@ -354,8 +354,6 @@ PRIVATE void do_status(message *m_ptr)
        int d, nr = 0;
        message m;
 
-       printf("do_status..\n");
-
        /* Caller has requested pending status information, which currently
         * can be pending available select()s, or REVIVE events. One message
         * is returned for every event, or DEV_NO_STATUS if no (more) events
@@ -431,7 +429,6 @@ message *m_ptr;
                break;
        }
        case DEV_STATUS: {
-               printf("status..\n");
                do_status(m_ptr);
                r = EDONTREPLY;
                break;
index b6709d723ad03f1bdf35d2d65c28c72e2d1360a1..03e288b8898068f67dfd32790a64b82a024f95cc 100755 (executable)
  * Directly sending it to TTY only displays the output. Sending it to the
  * log driver will cause the diagnostics to be buffered and displayed.
  */
-#define PRINTF_PROC            TTY     /* TTY or LOG_PROC_NR */
+#define PRINTF_PROC            LOG_PROC_NR     /* TTY or LOG_PROC_NR */
 
 /* NR_CONS, NR_RS_LINES, and NR_PTYS determine the number of terminals the
  * system can handle.