X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsafe-read.h;h=aba8bdb341f32ef96cc5d6fdf51c78291ff12826;hb=1276a2c5f24c0c932426aca9c899fa524d2443f2;hp=7174de7e125945c03de0754c88f13628195b8bb4;hpb=6b147027a1d9870d7d85e8aa8703c1233031a99c;p=gnulib.git diff --git a/lib/safe-read.h b/lib/safe-read.h index 7174de7e1..aba8bdb34 100644 --- a/lib/safe-read.h +++ b/lib/safe-read.h @@ -1,5 +1,5 @@ /* An interface to read() that retries after interrupts. - Copyright (C) 2002, 2006, 2009-2011 Free Software Foundation, Inc. + Copyright (C) 2002, 2006, 2009-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ /* Some system calls may be interrupted and fail with errno = EINTR in the following situations: - The process is stopped and restarted (signal SIGSTOP and SIGCONT, user - types Ctrl-Z) on some platforms: MacOS X. + types Ctrl-Z) on some platforms: Mac OS X. - The process receives a signal for which a signal handler was installed with sigaction() with an sa_flags field that does not contain SA_RESTART.