Skip to content

Specify read syscall code in "Reading Data" challenge description #25

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion hello-hackers/read/DESCRIPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ You now know how to output data to stdout using `write`.
But how does your program receive input data?
It `read`s it from stdin!

Like `write`, `read` is a system call that shunts data around between file descriptors and memory.
Like `write`, `read` is a system call that shunts data around between file descriptors and memory, and its syscall number is `0`.
In `read`'s case, it reads some amount of bytes from the provided file descriptor and stores them in memory.
The C-style syntax is the same as `write`:

Expand Down