免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1003 | 回复: 0
打印 上一主题 下一主题

修改程序名称 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-11-24 16:33 |只看该作者 |倒序浏览
/* proctitle code - we know this to work only on linux... */
/*
**  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.
*/
#include stdio.h>
#include stdlib.h>
#include string.h>
#include stdarg.h>
#include "setproctitle.h"
#ifndef SPT_BUFSIZE
#define SPT_BUFSIZE     2048
#endif
extern char** environ;
static char** argv0;
static int argv_lth;
void
initproctitle (int argc, char **argv) {
        int i;
        char **envp = environ;
        /*
         * 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 != NULL; i++)
                continue;
        environ = (char **) malloc(sizeof(char *) * (i + 1));
        if (environ == NULL)
                return;
        for (i = 0; envp != NULL; i++)
                if ((environ = strdup(envp)) == NULL)
                        return;
        environ = NULL;
        argv0 = argv;
        if (i > 0)
                argv_lth = envp[i-1] + strlen(envp[i-1]) - argv0[0];
        else
                argv_lth = argv0[argc-1] + strlen(argv0[argc-1]) - argv0[0];
}       
#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;
        if (!argv0)
                return;
        va_start(ap, fmt);
        (void) vsnprintf(buf, SPT_BUFSIZE, fmt, ap);
        va_end(ap);
        i = strlen (buf);
        if (i > argv_lth - 2) {
                i = argv_lth - 2;
                buf = '\0';
        }
        memset(argv0[0], '\0', argv_lth);       /* clear the memory area */
        (void) strcpy (argv0[0], buf);
        argv0[1] = NULL;
}
#else
void
setproctitle (const char *prog, const char *txt) {
        int        i;
        char       buf[SPT_BUFSIZE];
        if (!argv0)
                return;
        if (strlen(prog) + strlen(txt) + 5 > SPT_BUFSIZE)
                return;
        (void) sprintf(buf, "%s -- %s", prog, txt);
        i = strlen (buf);
        if (i > argv_lth - 2) {
                i = argv_lth - 2;
                buf = '\0';
        }
        memset(argv0[0], '\0', argv_lth);       /* clear the memory area */
        (void) strcpy (argv0[0], buf);
        argv0[1] = NULL;
}
#endif
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/17928/showart_2102645.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP