You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib/miscutil/misc_utils.h

17 lines
255 B

#ifndef MISC_UTILS_H
#define MISC_UTILS_H
#ifdef max
#undef max
#endif
#ifdef min
#undef min
#endif
int backend_pid(void);
int unlisten(char *relname);
int max(int x, int y);
int min(int x, int y);
int active_listeners(text *relname);
#endif