Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // http://crbug.com/269623 | 5 // http://crbug.com/269623 |
| 6 // http://openradar.appspot.com/14999594 | 6 // http://openradar.appspot.com/14999594 |
| 7 // | 7 // |
| 8 // When the default version of close used on Mac OS X fails with EINTR, the | 8 // When the default version of close used on Mac OS X fails with EINTR, the |
| 9 // file descriptor is not in a deterministic state. It may have been closed, | 9 // file descriptor is not in a deterministic state. It may have been closed, |
| 10 // or it may not have been. This makes it impossible to gracefully recover | 10 // or it may not have been. This makes it impossible to gracefully recover |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 // | 21 // |
| 22 // The $NOCANCEL variants of various system calls are activated by compiling | 22 // The $NOCANCEL variants of various system calls are activated by compiling |
| 23 // with __DARWIN_NON_CANCELABLE, which prevents them from being pthread | 23 // with __DARWIN_NON_CANCELABLE, which prevents them from being pthread |
| 24 // cancellation points. Rather than taking such a heavy-handed approach, this | 24 // cancellation points. Rather than taking such a heavy-handed approach, this |
| 25 // file implements an alternative: to use the $NOCANCEL variant of close (thus | 25 // file implements an alternative: to use the $NOCANCEL variant of close (thus |
| 26 // preventing it from being a pthread cancellation point) without affecting | 26 // preventing it from being a pthread cancellation point) without affecting |
| 27 // any other system calls. | 27 // any other system calls. |
| 28 // | 28 // |
| 29 // This file operates by providing a close function with the non-$NOCANCEL | 29 // This file operates by providing a close function with the non-$NOCANCEL |
| 30 // symbol name expected for the compilation environment as set by <unistd.h> | 30 // symbol name expected for the compilation environment as set by <unistd.h> |
| 31 // and <sys/cdefs.h> (the DARWIN_ALIAS_C macro). That function calls the | 31 // and <sys/cdefs.h> (the DARWIN_ALIAS_C macro). That name is set by an asm |
| 32 // $NOCANCEL variant, which is resolved from libsyscall. By linking with this | 32 // label on the declaration of the close function, so we receive that name |
|
Mark Mentovai
2015/03/27 12:12:50
Reword avoiding “we,” “our.”
pcc1
2015/03/27 17:46:56
Done.
| |
| 33 // version of close prior to the libsyscall version, close's implementation is | 33 // by defining the close function. Our close function calls the $NOCANCEL |
| 34 // overridden. | 34 // variant, which is resolved from libsyscall. By linking with this version of |
| 35 // close prior to the libsyscall version, close's implementation is overridden. | |
| 35 | 36 |
| 36 #include <sys/cdefs.h> | 37 #include <sys/cdefs.h> |
| 38 #include <unistd.h> | |
| 37 | 39 |
| 38 // If the non-cancelable variants of all system calls have already been | 40 // If the non-cancelable variants of all system calls have already been |
| 39 // chosen, do nothing. | 41 // chosen, do nothing. |
| 40 #if !__DARWIN_NON_CANCELABLE | 42 #if !__DARWIN_NON_CANCELABLE |
| 41 | 43 |
| 42 extern "C" { | 44 extern "C" { |
| 43 | 45 |
| 44 #if __DARWIN_UNIX03 && !__DARWIN_ONLY_UNIX_CONFORMANCE | 46 #if !__DARWIN_ONLY_UNIX_CONFORMANCE |
| 45 | 47 |
| 46 // When there's a choice between UNIX2003 and pre-UNIX2003 and UNIX2003 has | 48 // When there's a choice between UNIX2003 and pre-UNIX2003 and UNIX2003 has been |
| 47 // been chosen: | 49 // chosen, or when there's a choice between UNIX2003 and pre-UNIX2003 and |
|
Mark Mentovai
2015/03/27 12:12:51
This first sentence is kind of silly now.
pcc1
2015/03/27 17:46:56
Done.
| |
| 48 #define close_interface close$UNIX2003 | 50 // pre-UNIX2003 has been chosen. There's no close$NOCANCEL symbol in this case, |
| 49 #define close_implementation close$NOCANCEL$UNIX2003 | 51 // so use close$NOCANCEL$UNIX2003 as the implementation. It does the same thing |
| 50 | |
| 51 #elif !__DARWIN_UNIX03 && !__DARWIN_ONLY_UNIX_CONFORMANCE | |
| 52 | |
| 53 // When there's a choice between UNIX2003 and pre-UNIX2003 and pre-UNIX2003 | |
| 54 // has been chosen. There's no close$NOCANCEL symbol in this case, so use | |
| 55 // close$NOCANCEL$UNIX2003 as the implementation. It does the same thing | |
| 56 // that close$NOCANCEL would do. | 52 // that close$NOCANCEL would do. |
| 57 #define close_interface close | |
| 58 #define close_implementation close$NOCANCEL$UNIX2003 | 53 #define close_implementation close$NOCANCEL$UNIX2003 |
| 59 | 54 |
| 60 #else // __DARWIN_ONLY_UNIX_CONFORMANCE | 55 #else // __DARWIN_ONLY_UNIX_CONFORMANCE |
| 61 | 56 |
| 62 // When only UNIX2003 is supported: | 57 // When only UNIX2003 is supported: |
| 63 #define close_interface close | |
| 64 #define close_implementation close$NOCANCEL | 58 #define close_implementation close$NOCANCEL |
| 65 | 59 |
| 66 #endif | 60 #endif |
| 67 | 61 |
| 68 int close_implementation(int fd); | 62 int close_implementation(int fd); |
| 69 | 63 |
| 70 int close_interface(int fd) { | 64 int close(int fd) { |
| 71 return close_implementation(fd); | 65 return close_implementation(fd); |
| 72 } | 66 } |
| 73 | 67 |
| 74 #undef close_interface | |
| 75 #undef close_implementation | 68 #undef close_implementation |
| 76 | 69 |
| 77 } // extern "C" | 70 } // extern "C" |
| 78 | 71 |
| 79 #endif // !__DARWIN_NON_CANCELABLE | 72 #endif // !__DARWIN_NON_CANCELABLE |
| OLD | NEW |