CODING_STYLE: remove duplicate _exit() entry

parent a73c39cc
......@@ -433,13 +433,6 @@ rules to use them:
}
```
#### Use `_exit()` in `fork()`ed Processes
- This has multiple reasons but the gist is:
- `exit()` is not thread-safe
- `exit()` in libc runs exit handlers which might interfer with the parents
state
#### Use `for (;;)` instead of `while (1)` or `while (true)`
- Let's be honest, it is really the only sensible way to do this.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment