mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-01-30 16:13:51 +00:00
cleaned up some debug output.
This commit is contained in:
parent
91bccec71d
commit
05da8be34b
@ -110,8 +110,6 @@ int fd_checkalarms()
|
|||||||
for(i=0;i<alarmcount;i++)
|
for(i=0;i<alarmcount;i++)
|
||||||
{
|
{
|
||||||
if (alarms[i].next_alarm<=now) {
|
if (alarms[i].next_alarm<=now) {
|
||||||
WHYF("Alarm callback triggered for %s()",
|
|
||||||
fd_funcname(alarms[i].func));
|
|
||||||
alarms[i].func();
|
alarms[i].func();
|
||||||
if (!alarms[i].repeat_every) {
|
if (!alarms[i].repeat_every) {
|
||||||
/* Alarm was one-shot, so erase alarm */
|
/* Alarm was one-shot, so erase alarm */
|
||||||
@ -140,16 +138,12 @@ int fd_poll()
|
|||||||
if (ms<1) ms=1;
|
if (ms<1) ms=1;
|
||||||
|
|
||||||
/* Wait for action or timeout */
|
/* Wait for action or timeout */
|
||||||
WHYF("polling for up to %dms",ms);
|
|
||||||
int r=poll(fds, fdcount, ms);
|
int r=poll(fds, fdcount, ms);
|
||||||
WHYF("poll() reports action on %d file descriptors",r);
|
|
||||||
|
|
||||||
/* If file descriptors are ready, then call the appropriate functions */
|
/* If file descriptors are ready, then call the appropriate functions */
|
||||||
if (r>0) {
|
if (r>0) {
|
||||||
for(i=0;i<fdcount;i++)
|
for(i=0;i<fdcount;i++)
|
||||||
if (fds[i].revents) {
|
if (fds[i].revents) {
|
||||||
fprintf(stderr,"Action on fd#%d, calling %s\n",
|
|
||||||
fds[i].fd,fd_funcname(fd_functions[fds[i].fd]));
|
|
||||||
fd_functions[fds[i].fd](fds[i].fd);
|
fd_functions[fds[i].fd](fds[i].fd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user