资源简介
这是一个纯用户级的线程库的简单实现,它具备了用户级线程库的大部分重要的基本功能。这是一个完全自己编写的库,也是本人的一个课程设计,可供初学者参考。设计文档对线程库的实现细节进行了具体的说明。
代码片段和文件信息
/********************************************************************
filename: test.c
file ext: c
author: Zhongyi
purpose: Test program for uthreads lib
*********************************************************************/
#include “uthreads.h“
/* Two thread procedures can have several thread instances */
void f(int);
void g(int);
int main(int argc char** argv)
{
int param1 = 1 param2 = 11 param3 = 100;
int child_status;
/* Make allocation for waiting */
struct thread_status *ts1 = (struct thread_status*)malloc(sizeof(struct thread_status));
struct thread_status *ts2 = (struct thread_status*)malloc(sizeof(struct thread_status));
struct thread_status *ts3 = (struct thread_status*)malloc(sizeof(struct thread_status));
pid_t pid;
/* Initial uthreads lib
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 533504 2007-11-15 20:44 操作系统课程设计文档.doc
文件 281 2007-11-15 20:44 makefile
文件 3500 2007-11-15 20:44 test2.c
文件 3889 2007-11-15 20:44 test.c
文件 14655 2007-11-15 20:44 uthreads.c
文件 13026 2007-11-15 20:44 uthreads.h
文件 4172 2007-11-15 20:44 utility.c
----------- --------- ---------- ----- ----
573027 7
相关资源
- u8用友库存单据插件接口 .rar
- access简历学生数据库
- 《Access2003VBA数据库编程》.ppt(100页)
- pads stm32库(PADS最全封装库)
- axure rp9.0元件库汇总
- 易语言 多线程防崩溃防卡死
- vfp仓库管理源代码
- ARCGIS水利符号库(可根据不同应用重
- AxureUX交互原型移动端元件库精简版
- 常用axure原型库素材搜集.zip
- USB官方库及例程以及usb鼠标学习资料
- 赞酒店管理系统(源码+数据库)
- spring+springMVC+mybatis房屋出租项目源码
- SSH 企业人事管理系统源码(含数据库
- axure组件库(HUAWEI Axure_library_CloudBU_
- SSM项目入门级(附数据库脚本)
- B/S模式_数据库课程设计_员工人事调动
- 深信服SCSA题库试题全套.zip
- 点云pcl库学习 官方demo教程 原理解析
- axure通用元件库 PcWeb端原型图组件库高
- 计算机应用自考 2018 数据库系统原理
- axure 常用图标库(.rplib)
- 基于Spring的在线购物商城源码含数据
- Axure 8 Web前端+后台+移动前端 元件库
- 医院预约挂号系统源码+数据库
- 酒店预订系统源码SSH含使用说明和数
- SQL 2008R2 高级報表(含数据库)
- Access转MySql数据库工具(Access2Mysql)
- 列出数据库的所有表的创建时间
- 简单T-Sql备份所有数据库代码
评论
共有 条评论