1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00
Files
archived-php-src/sapi/fpm/fpm/fpm_systemd.h
T
George Peter Banyard c40231afbf Mark various functions with void arguments.
This fixes a bunch of [-Wstrict-prototypes] warning,
because in C func() and func(void) have different semantics.
2021-05-12 14:55:53 +01:00

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