Skip to content

Commit 9c4933a

Browse files
committed
Clarify wording
1 parent 2f0d6c1 commit 9c4933a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

assignments/02-cli-constructive.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,8 @@ program directly using syscalls. Specifically, you'll probably want to use
261261
These functions can return a whole host of different errors in different
262262
conditions. If any of them returns a value that signals an error (check the man
263263
page for each one), you should print a helpful error message and exit
264-
immediately with a nonzero exit code[^perror].
264+
immediately with a nonzero exit code[^perror]. You need not write a loop to
265+
handle `EINTR`; treat that as a fatal error like the others.
265266

266267
[^perror]: We won't require you to use it, but you may find the `perror`
267268
function (`man 3 perror`) helpful.

0 commit comments

Comments
 (0)