24 lines
629 B
C
24 lines
629 B
C
/* -------------------------------------------------------------------------
|
|
*
|
|
* ps_status.h
|
|
*
|
|
* Declarations for backend/utils/misc/ps_status.c
|
|
*
|
|
* src/include/utils/ps_status.h
|
|
*
|
|
* -------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef PS_STATUS_H
|
|
#define PS_STATUS_H
|
|
|
|
extern char** save_ps_display_args(int argc, char** argv);
|
|
|
|
extern void init_ps_display(const char* username, const char* dbname, const char* host_info, const char* initial_str);
|
|
|
|
extern void set_ps_display(const char* activity, bool force);
|
|
|
|
extern const char* get_ps_display(int* displen);
|
|
|
|
#endif /* PS_STATUS_H */
|