※ 引述《LORDJACK (文亚南)》之铭言:
: 最近公司的linux server有个问题
: 以前装32G的ram工作正常, 内存超过了就用page
: 最近把ram加到64G, 发生奇怪的问题
: 内存用量到24G时就会整个系统卡住, 连page也不用了
: 因此我想写一个程式如下
没有真的跑, 试看看吧.
简单说就是一直 fork 到 fork 不了为止
#define SIZE_4GB 0x100000000UL
int g_n = 0;
int main(void)
{
pid_t pid;
char *buf;
pid = fork();
if (pid < 0) // fork fail
{
printf("\nFork fail! => total malloc size = %d (GB)\n", 4*g_n);
return 1;
}
// else, fork success
if (pid == 0) // child process
{
if ((buf = (char *)malloc(SIZE_4GB)) != NULL)
{
memset(buf, 0x00, SIZE_4GB);
g_n++;
printf("child (%6d) : %d\n", pid, g_n);
}
else
printf("child (%6d) : malloc fail! g_n = %d\n", pid, g_n);
}
else
{
//Parent process, do nothing.
printf("parent (%6d) : do nothing\n", getpid());
}
return 0;
}