ps_status.h 602 B

12345678910111213141516171819202122232425
  1. /*-------------------------------------------------------------------------
  2. *
  3. * ps_status.h
  4. *
  5. * Declarations for backend/utils/misc/ps_status.c
  6. *
  7. * src/include/utils/ps_status.h
  8. *
  9. *-------------------------------------------------------------------------
  10. */
  11. #ifndef PS_STATUS_H
  12. #define PS_STATUS_H
  13. extern PGDLLIMPORT bool update_process_title;
  14. extern char **save_ps_display_args(int argc, char **argv);
  15. extern void init_ps_display(const char *fixed_part);
  16. extern void set_ps_display(const char *activity);
  17. extern const char *get_ps_display(int *displen);
  18. #endif /* PS_STATUS_H */