mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
c40231afbf
This fixes a bunch of [-Wstrict-prototypes] warning, because in C func() and func(void) have different semantics.
13 lines
278 B
C
13 lines
278 B
C
#ifndef FPM_SYSTEMD_H
|
|
#define FPM_SYSTEMD_H 1
|
|
|
|
#include "fpm_events.h"
|
|
|
|
/* 10s (in ms) heartbeat for systemd status */
|
|
#define FPM_SYSTEMD_DEFAULT_HEARTBEAT (10000)
|
|
|
|
void fpm_systemd_heartbeat(struct fpm_event_s *ev, short which, void *arg);
|
|
int fpm_systemd_conf(void);
|
|
|
|
#endif
|