Skip to content

Commit cc95bf4

Browse files
author
Vladimir Kotal
committed
fix spelling
1 parent 6a5284f commit cc95bf4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

synchro.tex

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@
500500
\item \emsl{shared memory} \dots{} passing data between processes,
501501
brings similar problems as shared files, the solution is to use semaphores.
502502
\item \emsl{message queues} \dots{} provide both communication and
503-
synchronization (waiting for message to arrive)
503+
synchronization (waiting for message to arrive)
504504
\item IPC means have \emsl{access rights} (for reading/writing) similarly to
505505
files for owner, group and others.
506506
\end{itemize}
@@ -509,11 +509,12 @@
509509
\begin{itemize}
510510
\item IPC resources continue to exist even after the process that created them
511511
is no longer around. To destroy them it is necessary to explicitly request this.
512-
From the shell the list of IPS resources can be acquired using
512+
From the shell the list of IPS resources can be acquired using
513513
the \texttt{ipcs} command. They can be deleted using the \texttt{ipcrm} command.
514514
The state and contents of existing IPS resources is unchanged even if no process
515515
works with them at the moment.
516-
\item For more information, see \texttt{svipc(7)} man page on any Linux distro.
516+
\item For more information, see \texttt{svipc(7)} man page on any Linux
517+
distribution.
517518
\end{itemize}
518519

519520
%%%%%
@@ -524,10 +525,10 @@
524525
\item introduced by E. Dijkstra
525526
\item semaphore is data structure that contains:
526527
\begin{itemize}
527-
\item non-negative integer \texttt{i} (free capacity)
528+
\item non-negative integer \texttt{i} (free capacity)
528529
\item process queue \texttt{q}, that wait for free capacity
529530
\end{itemize}
530-
\item semaphore operations:
531+
\item semaphore operations:
531532
\begin{description}
532533
\item [init(s, n)]~\\
533534
empty \texttt{s.q; s.i = n}

0 commit comments

Comments
 (0)