Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: runtime/bin/process_fuchsia.cc

Issue 2750843003: Rename TARGET_OS_* to HOST_OS_*. (Closed)
Patch Set: DEPS Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/process_android.cc ('k') | runtime/bin/process_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « runtime/bin/process_android.cc ('k') | runtime/bin/process_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698