diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2003-07-14 21:23:58 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2003-07-14 21:23:58 +0000 |
commit | 1fd5a3124b13eeff8e147e21445cd5f97389a707 (patch) | |
tree | fde075ec1a467813b8ca42a903ad16dfece47ab6 | |
parent | 5a2ef083d2befed4c94d4425f2cc45c09f24d884 (diff) |
-make a copy the global variable
+make a copy of the global variable
-rw-r--r-- | lib/libc/gen/signal.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/signal.3 b/lib/libc/gen/signal.3 index b5cb6c03125..3128f55e0c6 100644 --- a/lib/libc/gen/signal.3 +++ b/lib/libc/gen/signal.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: signal.3,v 1.25 2003/06/22 02:01:57 fgsch Exp $ +.\" $OpenBSD: signal.3,v 1.26 2003/07/14 21:23:57 dhartmei Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -341,7 +341,7 @@ In general though, signal handlers should do little more than set a flag; most other actions are not safe. .Pp Additionally, inside the signal handler it is also considered more safe to -make a copy the global variable +make a copy of the global variable .Va errno and restore it before returning from the signal handler. .Pp |