Home | History | Annotate | Download | only in src

Lines Matching defs:max_logs

27    MAX_LOGS messages. If more are queued, they will be dropped,
43 static int max_logs = 0;
73 daemon->max_logs = 0;
76 max_logs = daemon->max_logs;
86 if (max_logs == 0)
130 /* if max_logs is zero, leave the socket blocking */
131 if (max_logs != 0 && (flags = fcntl(log_fd, F_GETFL)) != -1)
319 else if (entries_alloced < max_logs && (entry = malloc(sizeof(struct log_entry))))
372 if (entries && max_logs != 0)
378 if (d == max_logs)
380 else if (max_logs > 8)
381 d -= max_logs - 8;