mirror of https://github.com/yandex/odyssey.git
18 lines
343 B
C
18 lines
343 B
C
#ifndef OD_DLSYM_H
|
|
#define OD_DLSYM_H
|
|
|
|
/*
|
|
* Odyssey.
|
|
*
|
|
* Scalable PostgreSQL connection pooler.
|
|
*/
|
|
|
|
#include "dlfcn.h"
|
|
|
|
#define od_dlopen(path) dlopen((char *)path, RTLD_NOW | RTLD_GLOBAL)
|
|
#define od_dlsym(handle, symbol) dlsym(handle, symbol)
|
|
#define od_dlerror dlerror
|
|
#define od_dlclose(handle) dlclose(handle)
|
|
|
|
#endif /* OD_DLSYM_H */
|