postgresql/src/include/utils/ps_status.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
590 B
C
Raw Normal View History

1998-08-25 23:29:16 +02:00
/*-------------------------------------------------------------------------
*
* ps_status.h
1998-08-25 23:29:16 +02:00
*
* Declarations for backend/utils/misc/ps_status.c
1998-08-25 23:29:16 +02:00
*
2010-09-20 22:08:53 +02:00
* src/include/utils/ps_status.h
*
1998-08-25 23:29:16 +02:00
*-------------------------------------------------------------------------
*/
#ifndef PS_STATUS_H
#define PS_STATUS_H
extern bool update_process_title;
extern char **save_ps_display_args(int argc, char **argv);
extern void init_ps_display(const char *fixed_part);
extern void set_ps_display(const char *activity);
extern const char *get_ps_display(int *displen);
1998-08-25 23:29:16 +02:00
#endif /* PS_STATUS_H */