欢迎来到天天文库
浏览记录
ID:55278782
大小:33.00 KB
页数:3页
时间:2020-05-08
《实验三线程的互斥.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、《操作系统》实验报告学生姓名:张鹏学号:实验地点:数计学院407实验室实验课时:3学时实验器材:计算机课程名称:计算机操作系统实验名称:2.3实验三:线程的互斥一、实验目的1、进一步掌握windows系统环境下线程的创建与撤销。2、熟悉线程互斥API3、使用线程互斥API解决实际问题。二、实验环境及工具Windows7操作系统,VC6三、实验内容能正确使用临界区对象,临界区对象(CriticalSection)包括初始化临界区(InitializeCriticalSection())、进入临界区(EnterCrit
2、icalSection())、退出临界区(LeaveCriticalSection())及删除临界区(DeleteCriticalSection()),进一步理解线程的互斥。四、实验步骤#include"stdafx.h"#include"Mutex.h"#ifdef_DEBUG#definenewDEBUG_NEW#undefTHIS_FILEstaticcharTHIS_FILE[]=__FILE__;#endif/////////////////////////////////////////////////
3、//////////////////////////////TheoneandonlyapplicationobjectCWinApptheApp;usingnamespacestd;staticintcount=5;staticHANDLEh1;staticHANDLEh2;LPCRITICAL_SECTIONhCriticalSection;CRITICAL_SECTIONCritical;voidfunc1();voidfunc2();-3-《操作系统》实验报告int_tmain(intargc,TCHAR*
4、argv[],TCHAR*envp[]){intnRetCode=0;DWORDdwThreadID1,dwThreadID2;hCriticalSection=&Critical;InitializeCriticalSection(hCriticalSection);h1=CreateThread((LPSECURITY_ATTRIBUTES)NULL,0,(LPTHREAD_START_ROUTINE)func1,(LPVOID)NULL,0,&dwThreadID1);if(h1==NULL)printf("
5、Thread1createFail!");elseprintf("Thread1createSuccess!");h2=CreateThread((LPSECURITY_ATTRIBUTES)NULL,0,(LPTHREAD_START_ROUTINE)func2,(LPVOID)NULL,0,&dwThreadID2);if(h2==NULL)printf("Thread2createFail!");elseprintf("Thread2createSuccess!");Sleep(1000);C
6、loseHandle(h1);CloseHandle(h2);DeleteCriticalSection(hCriticalSection);ExitThread(0);returnnRetCode;}voidfunc2(){intr2;EnterCriticalSection(hCriticalSection);r2=count;_sleep(100);r2=r2+1;count=r2;-3-《操作系统》实验报告printf("countinfunc2=%d",count);LeaveCriticalSect
7、ion(hCriticalSection);}voidfunc1(){intr1;EnterCriticalSection(hCriticalSection);r1=count;_sleep(500);r1=r1+1;count=r1;printf("countinfuncl=%d",count);LeaveCriticalSection(hCriticalSection);}五、实验结论1、进一步巩固和掌握第一二次实验线程的创建于撤销和线程的同步的一些基本函数的运用方法和各自的功能的基础上了解线程的互斥。2、
8、对初始化临界区InitializecritiCalSection()、进入临界区EnterCriticalSection()、退出临界区LeaveCriticalSection()及删除临界区DeleteCriticalsection()等命令的使用方法以及他们各自的功能有所了解。3、对线程互斥的源代码有所了解。-3-
此文档下载收益归作者所有