Chinaunix首页 | 论坛 | 博客
  • 博客访问: 71705
  • 博文数量: 24
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 245
  • 用 户 组: 普通用户
  • 注册时间: 2014-12-10 08:06
文章分类
文章存档

2015年(24)

我的朋友

发布时间:2015-06-30 22:24:37

<span style="font-size:24px;">1、内存段错误<br /><strong></strong><span style="font-size:18px;"><strong>代码段:该部分的数据都是只读,对其进行写操作会引起错误,错误可以在编译阶段检测出。<br />数据段/bss段:如果未进行初始化,那么会有警告,系统会默认的将这部分数据赋值为0。<br />栈空间数据:<br />.........【阅读全文】

阅读(1070) | 评论(0) | 转发(0)

发布时间:2015-06-02 10:14:36

编程实现三个线程ABC,并让它们顺次打印ABC点击(此处)折叠或打开#include<stdio.h>#include<stdlib.h>#include<pthread.h>#include<semaphore.h>#include<string.h>/* *声明3个线程.........【阅读全文】

阅读(1832) | 评论(0) | 转发(0)

发布时间:2015-06-01 22:51:53

1、pthread_mutex_init调用函数所需头文件:pthread.h函数原型:int pthread_mutex_init(pthread_mutex_t * restrict mutex, const pthread_mutexattr_t *restrict attr);参数解释:mutex: 指向互斥信号量对象。attr:指定互斥量的属性,当为空时使用默认的属性作用:以动态的方式创建信号量2、pthread_mutex.........【阅读全文】

阅读(789) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册