Skip to content

Commit

Permalink
Update background.tex
Browse files Browse the repository at this point in the history
Fix type effects -> affects
  • Loading branch information
tudorsiminic authored Dec 8, 2023
1 parent f3b04a1 commit 99a0102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background/background.tex
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ \subsection{Caching}
\begin{enumerate}
\item Race Conditions! If a value is stored in two different processor caches, then that value should be accessed by a single thread.
\item Speed. With a cache, your program may look faster mysteriously. Just assume that reads and writes that either happened recently or are next to each other in memory are fast.
\item Side effects. Every read or write effects the cache state. While most of the time this doesn't help or hurt, it is important to know. Check the Intel programmer guide on the lock prefix for more information.
\item Side effects. Every read or write affects the cache state. While most of the time this doesn't help or hurt, it is important to know. Check the Intel programmer guide on the lock prefix for more information.
\end{enumerate}

\subsection{Interrupts}
Expand Down

0 comments on commit 99a0102

Please sign in to comment.