Removed debugging statements from log.c; changed PRINTF_PROC in config.h
back to LOG_PROC_NR
This commit is contained in:
parent
3f4e0a5f59
commit
62c08df482
2 changed files with 1 additions and 4 deletions
|
@ -354,8 +354,6 @@ PRIVATE void do_status(message *m_ptr)
|
||||||
int d, nr = 0;
|
int d, nr = 0;
|
||||||
message m;
|
message m;
|
||||||
|
|
||||||
printf("do_status..\n");
|
|
||||||
|
|
||||||
/* Caller has requested pending status information, which currently
|
/* Caller has requested pending status information, which currently
|
||||||
* can be pending available select()s, or REVIVE events. One message
|
* can be pending available select()s, or REVIVE events. One message
|
||||||
* is returned for every event, or DEV_NO_STATUS if no (more) events
|
* is returned for every event, or DEV_NO_STATUS if no (more) events
|
||||||
|
@ -431,7 +429,6 @@ message *m_ptr;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case DEV_STATUS: {
|
case DEV_STATUS: {
|
||||||
printf("status..\n");
|
|
||||||
do_status(m_ptr);
|
do_status(m_ptr);
|
||||||
r = EDONTREPLY;
|
r = EDONTREPLY;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
* Directly sending it to TTY only displays the output. Sending it to the
|
* Directly sending it to TTY only displays the output. Sending it to the
|
||||||
* log driver will cause the diagnostics to be buffered and displayed.
|
* 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
|
/* NR_CONS, NR_RS_LINES, and NR_PTYS determine the number of terminals the
|
||||||
* system can handle.
|
* system can handle.
|
||||||
|
|
Loading…
Reference in a new issue