mirror of https://github.com/yandex/odyssey.git
20 lines
329 B
C
20 lines
329 B
C
#ifndef ODYSSEY_SETPROCTITLE_H
|
|
#define ODYSSEY_SETPROCTITLE_H
|
|
|
|
/*
|
|
* Odyssey.
|
|
*
|
|
* Scalable PostgreSQL connection pooler.
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/prctl.h>
|
|
#include "util.h"
|
|
|
|
#define OD_MAX_PROC_TITLE_LEN 256
|
|
|
|
od_retcode_t
|
|
od_setproctitlef(char **argv_ptr, char *fmt, ...);
|
|
|
|
#endif /* ODYSSEY_SETPROCTITLE_H */
|