Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move mermaid diagrams inline #25

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion 10_filesystem_background/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ already exist. This is where the `O_CREAT|O_EXCL` flags come in handy: they tell
That is, we don't want some crufty old path that has already been used. If it
does, `open` will fail.

![open](open.svg)
```mermaid
sequenceDiagram
participant server.door
participant server

server ->> server.door: open() // try to create file
```

## Check for Understanding
1. Why call `open` with `0400` permissions insted of `0600` or `0444`?
Expand Down
360 changes: 0 additions & 360 deletions 10_filesystem_background/open.svg

This file was deleted.

Loading