秀杰空间

Linux/Unix C/C++
Linux/Unix C/C++

UNIX环境高级编程学习之第十一章线程-线程的创建、退出、等待、取消、分离

UNIX环境高级编程学习之第十一章线程-线程的创建、退出、等待、取消、分离 [code lang="cpp"]#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <pthread.h> void* thread_fun(void* arg) // 线程执行函数1 { printf("fun:hello world!/n&qu…

2016年9月7日 0条评论 1816点热度 0人点赞 秀杰 阅读全文
Linux/Unix C/C++

UNIX环境高级编程学习之第十章信号-用信号实现父子进程同步

UNIX环境高级编程学习之第十章信号-用信号实现父子进程同步

2016年9月7日 0条评论 1954点热度 0人点赞 秀杰 阅读全文
Linux/Unix C/C++

UNIX环境高级编程学习之第十章信号-用信号和非局部转移函数写非阻塞的IO函数

UNIX环境高级编程学习之第十章信号-用信号和非局部转移函数写非阻塞的IO函数 [code lang="cpp"]/* File: NonblockingIO.c Desc: 用信号和非局部转移函数写非阻塞的IO函数 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <signal.h> #include <sys/typ…

2016年9月7日 0条评论 2060点热度 0人点赞 秀杰 阅读全文
Linux/Unix C/C++

UNIX环境高级编程学习之第十章信号-信号的基本操作(绑定/忽略/默认/发送)

UNIX环境高级编程学习之第十章信号-信号的基本操作(绑定/忽略/默认/发送) [code lang="cpp"]/* File: signal.c Desc: 信号基本操作 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <signal.h> #include <sys/types.h> #include <…

2016年9月7日 0条评论 1804点热度 0人点赞 秀杰 阅读全文
Linux/Unix C/C++

UNIX环境高级编程学习之第九章进程关系-创建孤儿进程

UNIX环境高级编程学习之第九章进程关系-创建孤儿进程 [code lang="cpp"]/* File: OrphanProcess.c Desc: 创建孤儿进程 父进程终止后,向原子进程发送挂断信号,又接着发送继续信号。 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <signal.h> #include <sys…

2016年9月7日 0条评论 1975点热度 0人点赞 秀杰 阅读全文
Linux/Unix C/C++

UNIX环境高级编程学习之第八章进程控制-用父子进程实现打开kate,返回kate关闭状态

UNIX环境高级编程学习之第八章进程控制-用父子进程实现打开kate,返回kate关闭状态 [code lang="cpp"]#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> int main() { pid_t pid= fork(); if (pid < 0) { printf("fork e…

2016年9月7日 0条评论 2291点热度 0人点赞 秀杰 阅读全文
1…45678

秀杰

做些有意义的事情

分类
  • Linux Shell
  • Linux/Unix C/C++
  • PHP
  • Tuxedo中间件
  • 分享软件
  • 开发环境
  • 心情笔记
  • 我的项目
  • 软件架构师
最新 热点 随机
最新 热点 随机
C++使用protobuf快速入门简明教程 Mac安装Brew(Homebrew)国内镜像源加速 从sockaddr_storage结构中取IP地址和端口 [转载]分布式之数据库和缓存双写一致性方案解析 TPS和QPS的区别和理解 2018最新可靠好用的DNS服务器地址汇总
UNIX环境高级编程学习之第十三章守护进程 - 初始化一个守护进程 [转载]Zookeeper原理 UNIX环境高级编程学习之第十一章线程-使用读写锁 UNIX环境高级编程学习之第六章系统数据文件和信息-GID To GroupName XJPHP RESTful : 是一个超轻量的快速开发框架。Light and Fast。 UNIX环境高级编程学习之第三章文件IO-文件写操作

COPYRIGHT © 2023 个人笔记. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang

京ICP备11019155号-2