
logically belongs. Arrange to update the _NSGetArgv() copy of the argv pointer on Darwin. (It seems likely that other NeXT-derived platforms also have an _NSGetArgv() problem, but until we have some reports I'll just make this #ifdef __darwin__.)
25 lines
644 B
C
25 lines
644 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* ps_status.h
|
|
*
|
|
* Declarations for backend/utils/misc/ps_status.c
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/utils/ps_status.h,v 1.25 2004/02/22 21:26:54 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#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);
|
|
|
|
extern void set_ps_display(const char *activity);
|
|
|
|
extern const char *get_ps_display(void);
|
|
|
|
#endif /* PS_STATUS_H */
|