| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #if !defined(DART_IO_DISABLED) | |
| 6 | |
| 7 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 8 #if defined(HOST_OS_ANDROID) | 6 #if defined(HOST_OS_ANDROID) |
| 9 | 7 |
| 10 #include "bin/process.h" | 8 #include "bin/process.h" |
| 11 | 9 |
| 12 #include <errno.h> // NOLINT | 10 #include <errno.h> // NOLINT |
| 13 #include <fcntl.h> // NOLINT | 11 #include <fcntl.h> // NOLINT |
| 14 #include <poll.h> // NOLINT | 12 #include <poll.h> // NOLINT |
| 15 #include <stdio.h> // NOLINT | 13 #include <stdio.h> // NOLINT |
| 16 #include <stdlib.h> // NOLINT | 14 #include <stdlib.h> // NOLINT |
| (...skipping 982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 bzero(&act, sizeof(act)); | 997 bzero(&act, sizeof(act)); |
| 1000 act.sa_handler = SIG_DFL; | 998 act.sa_handler = SIG_DFL; |
| 1001 VOID_NO_RETRY_EXPECTED(sigaction(signal, &act, NULL)); | 999 VOID_NO_RETRY_EXPECTED(sigaction(signal, &act, NULL)); |
| 1002 } | 1000 } |
| 1003 } | 1001 } |
| 1004 | 1002 |
| 1005 } // namespace bin | 1003 } // namespace bin |
| 1006 } // namespace dart | 1004 } // namespace dart |
| 1007 | 1005 |
| 1008 #endif // defined(HOST_OS_ANDROID) | 1006 #endif // defined(HOST_OS_ANDROID) |
| 1009 | |
| 1010 #endif // !defined(DART_IO_DISABLED) | |
| OLD | NEW |