OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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) | 5 #if !defined(DART_IO_DISABLED) |
6 | 6 |
7 #include "platform/globals.h" | 7 #include "platform/globals.h" |
8 #if defined(TARGET_OS_FUCHSIA) | 8 #if defined(HOST_OS_FUCHSIA) |
9 | 9 |
10 #include "bin/process.h" | 10 #include "bin/process.h" |
11 | 11 |
12 #include <errno.h> | 12 #include <errno.h> |
13 #include <fcntl.h> | 13 #include <fcntl.h> |
14 #include <launchpad/launchpad.h> | 14 #include <launchpad/launchpad.h> |
15 #include <launchpad/vmo.h> | 15 #include <launchpad/vmo.h> |
16 #include <magenta/process.h> | 16 #include <magenta/process.h> |
17 #include <magenta/status.h> | 17 #include <magenta/status.h> |
18 #include <magenta/syscalls.h> | 18 #include <magenta/syscalls.h> |
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 } | 813 } |
814 | 814 |
815 | 815 |
816 void Process::ClearSignalHandler(intptr_t signal) { | 816 void Process::ClearSignalHandler(intptr_t signal) { |
817 UNIMPLEMENTED(); | 817 UNIMPLEMENTED(); |
818 } | 818 } |
819 | 819 |
820 } // namespace bin | 820 } // namespace bin |
821 } // namespace dart | 821 } // namespace dart |
822 | 822 |
823 #endif // defined(TARGET_OS_FUCHSIA) | 823 #endif // defined(HOST_OS_FUCHSIA) |
824 | 824 |
825 #endif // !defined(DART_IO_DISABLED) | 825 #endif // !defined(DART_IO_DISABLED) |
OLD | NEW |