00001 #ifndef CHANGE_PROCESS_TITLE_H 00002 #define CHANGE_PROCESS_TITLE_H 00003 00004 /* 00005 This module changes the appearance of the current process' 00006 title in displays such as ps and top. It only works on Linux. 00007 cpt_init() must be called once before processing arguments, 00008 and then cpt() may be called many times to change the title. 00009 */ 00010 00011 void change_process_title_init( char **argv ); 00012 void change_process_title( const char *fmt, ... ); 00013 00014 #endif