odyssey/core/od_pid.h

21 lines
300 B
C
Raw Normal View History

2016-11-28 12:55:37 +00:00
#ifndef OD_PID_H_
#define OD_PID_H_
/*
* odissey.
*
* PostgreSQL connection pooler and request router.
*/
2016-11-29 12:54:01 +00:00
typedef struct od_pid_t od_pid_t;
2016-11-28 12:55:37 +00:00
2016-11-29 12:54:01 +00:00
struct od_pid_t {
2016-11-28 12:55:37 +00:00
pid_t pid;
};
2016-11-29 12:54:01 +00:00
void od_pidinit(od_pid_t*);
int od_pidfile_create(od_pid_t*, char*);
int od_pidfile_unlink(od_pid_t*, char*);
2016-11-28 12:55:37 +00:00
#endif