⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 semtest1.c

📁 The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a s
💻 C
字号:
#include <conio.h>#include <process.h>#include <sched.h>#include <sema.h>#include <string.h>#if !defined (NULL)#define NULL 0#endifint main( int argc , char ** argv ){  int scr_sem;			/* sid of screen semaphore */  int id1, id2, id3;    	/* ID of child process */    scr_sem    = Create_Semaphore ( "screen" , 1 )  ;    P ( scr_sem ) ;  Print ("Semtest1 begins\n");  V ( scr_sem ) ;  id3 = Spawn_Program ( "/c/p3.exe", "/c/p3.exe" ) ;  P ( scr_sem ) ;  Print ("p3 created\n");  V ( scr_sem ) ;  id1 = Spawn_Program ( "/c/p1.exe", "/c/p2.exe" ) ;  id2 = Spawn_Program ( "/c/p2.exe", "/c/p1.exe" ) ;    Wait(id1);  Wait(id2);  Wait(id3);  Destroy_Semaphore(scr_sem);  return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -