diff options
author | newton <newton@FreeBSD.org> | 2000-01-15 15:30:44 +0000 |
---|---|---|
committer | newton <newton@FreeBSD.org> | 2000-01-15 15:30:44 +0000 |
commit | 931fcb23e6ad3a28be2e25c1e7ff5ad5545080d2 (patch) | |
tree | a449a68745342dd9974cb62cc758b6ccd8ba419c /sys/svr4 | |
parent | bf5443aad0553ca645e08cf1b1c1393fc3af8d1f (diff) | |
download | FreeBSD-src-931fcb23e6ad3a28be2e25c1e7ff5ad5545080d2.zip FreeBSD-src-931fcb23e6ad3a28be2e25c1e7ff5ad5545080d2.tar.gz |
Remove some all-too-wordy debugging prints
Diffstat (limited to 'sys/svr4')
-rw-r--r-- | sys/svr4/svr4_filio.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/svr4/svr4_filio.c b/sys/svr4/svr4_filio.c index d9571c3..92b4092 100644 --- a/sys/svr4/svr4_filio.c +++ b/sys/svr4/svr4_filio.c @@ -74,16 +74,11 @@ svr4_sys_poll(p, uap) error = cerr; goto done; } - DPRINTF(("poll(%x, %x, %d) = %d\n", SCARG(uap, fds), SCARG(uap, nfds), - SCARG(uap, timeout), p->p_retval[0])); for (idx = 0; idx < SCARG(uap, nfds); idx++) { /* POLLWRNORM already equals POLLOUT, so we don't worry about that */ if (pfd[idx].revents & (POLLOUT | POLLWRNORM | POLLWRBAND)) pfd[idx].revents |= (POLLOUT | POLLWRNORM | POLLWRBAND); - DPRINTF(("pollfd[%d]->fd = %d\n", idx, pfd[idx].fd)); - DPRINTF(("pollfd[%d]->events = %x\n", idx, pfd[idx].events)); - DPRINTF(("pollfd[%d]->revents = %x\n", idx, pfd[idx].revents)); } if ((cerr = copyout(pfd, SCARG(uap, fds), siz)) != 0) { error = cerr; |