- 论坛徽章:
- 0
|
问题解决了。
不过方向和“跟代码+printk”相反。
我在系统起来之后 写了个简单的测试代码
#include <stdio.h>
#include <pthread.h>
void* thread_info(void)
{
fprintf(stderr,"in thread_info function\n");
}
int main(void)
{
pthread_t thread_id;
int ret;
ret=pthread_create(&thread_id,NULL,(void*)thread_info,NULL);
if(ret != 0){
printf("cannot create new thread,%d:%s",ret,strerror(ret));
return 1;
}
sleep(1);
return 0;
}
发现还是提示内存不足。
怀疑是内核中使用的模块太多的原因。
使用free命令:
total used free shared buffers
Mem: 56576 54376 2200 0 0
Swap: 0 0 0
Total: 56576 54376 2200
可以使用的只有 2200K。
再次确认是内核中使用的模块多的原因。
修改内核配置文件,去掉不使用的模块。
再次free
total used free shared buffers cached
Mem: 56960 27968 28992 0 0 7696
再次测试创建线程,测试通过。
结论:修改内核时,将不用的内核模块去除掉。 |
|