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

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

Issue 2711273003: [Fuchsia] Use magenta/process.h for mx_job_default, mx_vmar_root_self (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | runtime/vm/virtual_memory_fuchsia.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(TARGET_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/status.h> 17 #include <magenta/status.h>
17 #include <magenta/syscalls.h> 18 #include <magenta/syscalls.h>
18 #include <magenta/syscalls/object.h> 19 #include <magenta/syscalls/object.h>
19 #include <mxio/util.h> 20 #include <mxio/util.h>
20 #include <pthread.h> 21 #include <pthread.h>
21 #include <stdbool.h> 22 #include <stdbool.h>
22 #include <stdio.h> 23 #include <stdio.h>
23 #include <stdlib.h> 24 #include <stdlib.h>
24 #include <string.h> 25 #include <string.h>
25 #include <sys/epoll.h> 26 #include <sys/epoll.h>
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 void Process::ClearSignalHandler(intptr_t signal) { 816 void Process::ClearSignalHandler(intptr_t signal) {
816 UNIMPLEMENTED(); 817 UNIMPLEMENTED();
817 } 818 }
818 819
819 } // namespace bin 820 } // namespace bin
820 } // namespace dart 821 } // namespace dart
821 822
822 #endif // defined(TARGET_OS_FUCHSIA) 823 #endif // defined(TARGET_OS_FUCHSIA)
823 824
824 #endif // !defined(DART_IO_DISABLED) 825 #endif // !defined(DART_IO_DISABLED)
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/virtual_memory_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698