title: 2022操作系统实验
date: 2022-09-30 17:29:31
author: “胡耀文”
categories: 操作系统
之前就玩过虚拟机,所以直接vscode上ssh远程连接来写
没有或者不用vscode的话也可以直接在虚拟机上vim来写,只不过黑框框可能用得比较难受
#include "kernel/types.h"
#include "kernel/stat.h"
#include "user/user.h"
int main(int argc,char **argv){
if(argc<2){
printf("usage: sleep \n" );
}
sleep(atoi(argv[1]));
exit(0);
}
单开一个管道的话,有可能我刚写进去就被自己读到了
所以开两个来进行操作
#include "kernel/types.h"
#include "kernel/stat.h"
#include "user/user.h"
signed main(int argc,char **argv){
int pp2c[2],pc2p[2];
pipe(pp2c);
pipe(pc2p);
if(fork()==0){
char buf;
read(pp2c[0