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

Side by Side Diff: tools/pnacl-llc/nacl_file.cpp

Issue 14604011: Separate the PNaCl llc into a tool named pnacl-llc (how original!) (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Review comments Created 7 years, 7 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
OLDNEW
1 /* Copyright 2012 The Native Client Authors. All rights reserved. 1 /* Copyright 2012 The Native Client Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can 2 * Use of this source code is governed by a BSD-style license that can
3 * be found in the LICENSE file. 3 * be found in the LICENSE file.
4 * 4 *
5 * This file provides wrappers to open() to use pre-opened file descriptors 5 * This file provides wrappers to open() to use pre-opened file descriptors
6 * for the input bitcode and the output file. 6 * for the input bitcode and the output file.
7 * 7 *
8 * It also has the SRPC interfaces, but that should probably be refactored 8 * It also has the SRPC interfaces, but that should probably be refactored
9 * into a separate file. 9 * into a separate file.
10 */ 10 */
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 } 413 }
414 414
415 if (!NaClSrpcAcceptClientConnection(srpc_methods)) { 415 if (!NaClSrpcAcceptClientConnection(srpc_methods)) {
416 return 1; 416 return 1;
417 } 417 }
418 NaClSrpcModuleFini(); 418 NaClSrpcModuleFini();
419 return 0; 419 return 0;
420 } 420 }
421 421
422 #endif 422 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698