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

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

Issue 2812753002: [fuchsia] Fix shutdown crash (Closed)
Patch Set: Created 3 years, 8 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 | no next file » | 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(HOST_OS_FUCHSIA) 8 #if defined(HOST_OS_FUCHSIA)
9 9
10 #include "bin/process.h" 10 #include "bin/process.h"
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 return -1; 801 return -1;
802 } 802 }
803 ProcessStarter starter(path, arguments, arguments_length, working_directory, 803 ProcessStarter starter(path, arguments, arguments_length, working_directory,
804 environment, environment_length, mode, in, out, err, 804 environment, environment_length, mode, in, out, err,
805 id, exit_event, os_error_message); 805 id, exit_event, os_error_message);
806 return starter.Start(); 806 return starter.Start();
807 } 807 }
808 808
809 809
810 intptr_t Process::SetSignalHandler(intptr_t signal) { 810 intptr_t Process::SetSignalHandler(intptr_t signal) {
811 UNIMPLEMENTED(); 811 errno = ENOSYS;
812 return -1; 812 return -1;
813 } 813 }
814 814
815 815
816 void Process::ClearSignalHandler(intptr_t signal) { 816 void Process::ClearSignalHandler(intptr_t signal) {
817 UNIMPLEMENTED();
818 } 817 }
819 818
820 } // namespace bin 819 } // namespace bin
821 } // namespace dart 820 } // namespace dart
822 821
823 #endif // defined(HOST_OS_FUCHSIA) 822 #endif // defined(HOST_OS_FUCHSIA)
824 823
825 #endif // !defined(DART_IO_DISABLED) 824 #endif // !defined(DART_IO_DISABLED)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698