Skip to content

Commit 0b259f2

Browse files
author
Vladimir Kotal
committed
fix spelling
1 parent 3aee918 commit 0b259f2

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed

files.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
metadata, etc.
1818
\item Each filesystem has a specific structure type it uses, for example
1919
\texttt{ext4} (Linux specific), \texttt{XFS} (used on Linux but coming from SGI
20-
IRIX), \texttt{JFS} (used on Linux but came from IBM AIX), \texttt{ufs} (BSD
20+
IRIX), \texttt{JFS} (used on Linux but came from IBM AIX), \texttt{UFS} (BSD
2121
systems), \texttt{FAT32} (Win), \texttt{ZFS} (Solaris born, then ported to other
2222
systems), \texttt{APFS} (macOS and iOS since 2017), etc. A filesystem can be
2323
either used on local or remote storage, and in case of a remote storage network

history.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
the 4.xBSD versioning scheme. It was common that rather write its own code, the
199199
Berkeley developers looked around first for what is already done. In this way
200200
BSD took virtual memory from Mach or NFS-compatible code developed on one
201-
canadian university.
201+
Canadian university.
202202
%\item (1988) 4.3BSD-Tahoe had already the kernel code split into architecture
203203
%dependent and independent.
204204
%\item (1989) \emph{Networking Release 1}, first freely distributable code from

network.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@
10651065
addresses, i.e. it will be able to accept connections for both address families
10661066
on the same socket. The remote address of IPv4 clients will be represented as
10671067
\emph{IPv4-mapped IPv6 address}, (i.e. it contains embedded IPv4 address, e.g.
1068-
napø. \texttt{::FFFF:78.128.192.1}).
1068+
e.g. \texttt{::FFFF:78.128.192.1}).
10691069
\item Note that it is mostly not necessary to cast to the \texttt{sockaddr}
10701070
structure. The only exception is the \texttt{accept} call.
10711071
For the \texttt{accept} call the \texttt{sockaddr\_storage} is used which is

synchro.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@
435435
release the lock however that will never happen. Next possibility is deadlock
436436
of single process that is reading from a pipe after forgetting to close
437437
the write end of the pipe. If there is no one else that has the pipe open,
438-
the read will block because the all file desriptor copies of the write end are
438+
the read will block because the all file descriptor copies of the write end are
439439
not closed and therefore the end of file cannot happen until the reading process
440440
closed the write end however it cannot do it because it is blocked.
441441
in \texttt{read} syscall:
@@ -469,7 +469,7 @@
469469
\sltitle{IPC}
470470
\begin{itemize}
471471
\item \emsl{IPC} stands for \emph{Inter-Process Communication}
472-
\item between processes \emsl{in single system}, e.g. does not inlude
472+
\item between processes \emsl{in single system}, e.g. does not include
473473
network communication.
474474
\item \emsl{semaphores} \dots{} used for process synchronization
475475
\item \emsl{shared memory} \dots{} passing data between processes,

unix_dict.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -619,3 +619,29 @@ rdlock
619619
rwlock
620620
wrlock
621621
trywrlock
622+
SIGABRT
623+
stty
624+
tcsetattr
625+
SIGPOLL
626+
WIFEXITED
627+
COFF
628+
PROT
629+
ASYNC
630+
Salus
631+
seteuid
632+
pageout
633+
sched
634+
setpriority
635+
UFS
636+
readlink
637+
bss
638+
proc
639+
pmap
640+
nanosleep
641+
strace
642+
mkfile
643+
fallocate
644+
RESETHAND
645+
DFL
646+
NODEFER
647+
IGN

0 commit comments

Comments
 (0)