| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |