码迷,mamicode.com
首页 > 系统相关 > 详细

Linux进程资源设置

时间:2017-10-21 00:19:15      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:rlimit   prctl   

#include <stdlib.h>
#include <stdio.h>
#include <sys/resource.h>
#include<sys/prctl.h>
#include <string.h>

int main() {



    struct rlimit rl;
    if(getrlimit(RLIMIT_CORE,&rl) != 0){
        perror("getrlimit failed");
    }

    printf("RLIMIT_CORE:\n");
    printf("cur:%d,max:%d\n\n",rl.rlim_cur,rl.rlim_max);


    if(prctl(PR_SET_DUMPABLE,1) != 0){
        perror("prctl error.");
    }
    int a = 0;
    printf("PR_GET_DUMPABLE:%d\n",prctl(PR_GET_DUMPABLE,&a));
    printf("%d\n",a);


    char pName[16] = {0};
    prctl(PR_GET_NAME,pName);

    printf("pName before: %s\n",pName);

    strcpy(pName,"Process_t1");

    if(prctl(PR_SET_NAME,pName) != 0){
        perror("PR_SET_NAME Failed.");
    }
    printf("pName after: %s\n",pName);



    return 0;
}


Linux进程资源设置

标签:rlimit   prctl   

原文地址:http://xwandrew.blog.51cto.com/2909336/1974533

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!