Skip to content

Commit a0b8395

Browse files
committed
bind the articles to the next word to avoid wrapping
1 parent 488c851 commit a0b8395

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proc.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
\item It is also possible to connect segments of shared memory
3636
(\texttt{shm\_open}) or files (\texttt{mmap}) into the address space.
3737
\item The text is shared between all processes which execute the same code.
38-
The data segment and stack are private for each process.
38+
The~data segment and stack are private for each process.
3939
\item Each system can use a different layout of a process address space
4040
(and typically it is indeed so). See the next slide which also shows
4141
sections for \texttt{mmap} and \emph{heap}.
@@ -54,13 +54,13 @@
5454
\item \emph{(User) stack} \dots{} local non-static variables, function
5555
parameters (on certain architectures in certain modes - e.g. 32-bit x86), return
5656
addresses. Each process has 2 stacks -- one for a user mode and another for
57-
kernel mode. The user stack automatically grows according to its use (except
57+
kernel mode. The~user stack automatically grows according to its use (except
5858
for threads where each thread has its own limited stack).
5959
\item \emph{User area (u-area)} \dots{} contains process information used by
6060
the kernel which is not needed when the process is swapped out to disk
6161
(number of open files, signal handling settings, number of shared memory segments,
6262
program arguments, environment variables, current working directory, etc.).
63-
This area is accessible only to the kernel which will see just the area
63+
This~area is accessible only to the kernel which will see just the area
6464
of a currently running process. The rest of the data needed even if the process
6565
is not currently running or while swapped out to disk is stored in the
6666
\texttt{proc} structure. \texttt{proc} structures for all processes are always

0 commit comments

Comments
 (0)