linux clone函数ptid,原始克隆系统调用

我不能说我建议用克隆去,如果你可以使用并行线程。我对函数有不好的经验,例如malloc()与克隆有关。

有你看了man page的文档?

这里是我运行一个实例。我没有真正检查你的代码,看看它为什么会崩溃。

#define _GNU_SOURCE

#include

#include

#include

#include

#include

#include

#include

#include

// Allow us to round to page size

#define ROUND_UP_TO_MULTIPLE(a,b) \

(((a) % (b) == 0) ? (a) : ((a) + ((b) - ((a) % (b)))))

struct argsy {

int threadnum;

};

int fun(void * args) {

struct argsy * arguments = (struct argsy *) args;

fprintf(stderr, "hey!, i'm thread %d\n", arguments->threadnum);

return 0;

}

#define N_THREADS 10

#define PAGESIZE 4096

struct argsy arguments[N_THREADS];

int main() {

assert(PAGESIZE==getpagesize());

const int thread_stack_size = 256*PAGESIZE;

void * base = malloc((((N_THREADS*thread_stack_size+PAGESIZE)/PAGESIZE)*PAGESIZE));

assert(base);

void * stack = (void *)ROUND_UP_TO_MULTIPLE((size_t)(base), PAGESIZE);

int i = 0;

for (i = 0; i < N_THREADS; i++) {

void * args = &arguments[i];

arguments[i].threadnum = i;

clone(&fun, stack+((i+1)*thread_stack_size),

CLONE_FILES | CLONE_VM,

args);

}

sleep(1);

// Wait not implemented

return 0;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值