Add big experiment oj instruction. authored by Huangzirui1206's avatar Huangzirui1206
......@@ -16,20 +16,7 @@
*Date 6-12*
> **重要:**
> 选择大实验持久化任务的同学,请在user/include/ulib.h中加上
```c
int mkfifo(const char *path, int mode);
```
> 并在user/ulib/syscall.c中加上
```c
int mkfifo(const char *path, int mode) {
return (int)syscall(SYS_mkfifo, (size_t)path, (size_t)mode, 0, 0, 0);
}
```
> 写并行化的同学这个可以不用改
>
> 选择并行的同学,请记得加上`gettid`这个系统调用。
> 并行与持久化的OJ提交请参考[这里](./BigExpr/oj_instruction)。
---
......
......