mirror of https://github.com/yandex/odyssey.git
17 lines
294 B
C
17 lines
294 B
C
#ifndef ODYSSEY_WATCHDOG_H
|
|
#define ODYSSEY_WATCHDOG_H
|
|
|
|
/*
|
|
* Odyssey.
|
|
*
|
|
* Scalable PostgreSQL connection pooler.
|
|
*/
|
|
|
|
#define ODYSSEY_WATCHDOG_ITER_INTERVAL 500 // ms
|
|
|
|
void od_watchdog_worker(void *arg);
|
|
|
|
od_retcode_t od_watchdog_invoke(od_system_t *server);
|
|
|
|
#endif /* ODYSSEY_WATCHDOG_H */
|