On Fri, Apr 26, 2019 at 09:57:00AM +0900, SeongJae Park wrote: > A sentence calls a 'signal or interrupt handler' as 'interrupt handler'. > This commit modifies the sentence to call it just a handler to minimize > any confusion. > > Signed-off-by: SeongJae Park <sj38.park@xxxxxxxxx> Good eyes!!! All five applied and pushed, thank you! Thanx, Paul > --- > toolsoftrade/toolsoftrade.tex | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/toolsoftrade/toolsoftrade.tex b/toolsoftrade/toolsoftrade.tex > index 4e0764d..1cf118b 100644 > --- a/toolsoftrade/toolsoftrade.tex > +++ b/toolsoftrade/toolsoftrade.tex > @@ -2365,8 +2365,8 @@ for other accesses to that same variable: > All other code must use \co{READ_ONCE()} and \co{WRITE_ONCE()}. > \item A shared variable is only accessed by a given CPU or thread > and by a signal or interrupt handler running in that CPU's > - or thread's context, and the interrupt handler always restores > - the values of any variables that it has written before return. > + or thread's context, and the handler always restores the values of any > + variables that it has written before return. > The handler can use plain loads and stores, as can any code > that has prevented the handler from being invoked, that is, > code that has blocked signals and/or interrupts. > -- > 2.10.0 >