X-Git-Url: http://git.hcoop.net/bpt/guile.git/blobdiff_plain/35428fb6b2d269dbfa2eec7d0739aec149bd4cc2..d8d7c7bf5706ce7873257eb88f0a5cc01b541858:/lib/safe-write.h diff --git a/lib/safe-write.h b/lib/safe-write.h index 42e598181..779f5d5ba 100644 --- a/lib/safe-write.h +++ b/lib/safe-write.h @@ -1,5 +1,5 @@ /* An interface to write() that retries after interrupts. - Copyright (C) 2002, 2009-2011 Free Software Foundation, Inc. + Copyright (C) 2002, 2009-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser 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.