Changes
Page history
Add big experiment oj instruction.
authored
Jun 13, 2024
by
Huangzirui1206
Show whitespace changes
Inline
Side-by-side
Home.md
View page @
d73212a6
...
...
@@ -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)。
---
...
...
...
...