odyssey/sources/pid.h

22 lines
287 B
C
Raw Normal View History

#ifndef OD_PID_H
#define OD_PID_H
/*
2017-06-07 11:50:58 +00:00
* ODISSEY.
*
* PostgreSQL connection pooler and request router.
*/
typedef struct od_pid od_pid_t;
struct od_pid
{
pid_t pid;
};
2017-05-24 12:13:44 +00:00
void od_pid_init(od_pid_t*);
int od_pid_create(od_pid_t*, char*);
int od_pid_unlink(od_pid_t*, char*);
#endif