아래는 linux에서 setproctitle 기능을 하게 하는 소스 전부이다. (FreeBSD에서도 setproctitle man page에서 sendmail의 소스를 참조했다고 하더니, 여기서도 비슷한 문구를 볼 수 있다. 뭐 기억이 맞다면..)
/*
** SETPROCTITLE -- set process title for ps (from sendmail)
**
** Parameters:
** fmt -- a printf style format string.
**
** Returns:
** none.
**
** Side Effects:
** Clobbers argv of our main procedure so ps(1) will
** display the title.
*/
/*
* Move the environment so we can reuse the memory.
* (Code borrowed from sendmail.)
* WARNING: ugly assumptions on memory layout here;
* if this ever causes problems, #undef DO_PS_FIDDLING
*/
for (i = 0; envp[i] != NULL; i++)
continue;
environ = (char **) malloc(sizeof(char *) * (i + 1));
if (environ == NULL)
return;
for (i = 0; envp[i] != NULL; i++)
if ((environ[i] = strdup(envp[i])) == NULL)
return;
environ[i] = NULL;
#if 0
/* Nice code, but many places do not know about vsnprintf ... */
void
setproctitle (const char *fmt,...) {
int i;
char buf[SPT_BUFSIZE];
va_list ap;