操作系统的坑(更新)
Posted otakus
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了操作系统的坑(更新)相关的知识,希望对你有一定的参考价值。
Operating Systems
Figure2.1
#include<stdio.h>
#include<stdlib.h>
#include<sys/time.h>
#include<assert.h>
#include"common.h"
int main(int argc,char*argv[]){
if(argc!=2){
fprintf(stderr, "usage:cpu<string>
");
exit(1);
}
char *str=argv[1];
while(1){
Spin(1);
printf("%s
",str);
}
return 0;
}
需要从http://pages.cs.wisc.edu/~remzi/OSTEP/Code/ code.threads-intro.tgz
Figure2.2只需要&,;去除
以上是关于操作系统的坑(更新)的主要内容,如果未能解决你的问题,请参考以下文章