Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / utils / ps_status.h
blob2311fcd998b72dc38f99d9542348276260e2db19
1 /*-------------------------------------------------------------------------
3 * ps_status.h
5 * Declarations for backend/utils/misc/ps_status.c
7 * $PostgreSQL$
9 *-------------------------------------------------------------------------
12 #ifndef PS_STATUS_H
13 #define PS_STATUS_H
15 extern bool update_process_title;
17 extern char **save_ps_display_args(int argc, char **argv);
19 extern void init_ps_display(const char *username, const char *dbname,
20 const char *host_info, const char *initial_str);
22 extern void set_ps_display(const char *activity, bool force);
24 extern const char *get_ps_display(int *displen);
26 #endif /* PS_STATUS_H */