| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <errno.h> | 5 #include <errno.h> |
| 6 #include <fcntl.h> | 6 #include <fcntl.h> |
| 7 #include <netinet/in.h> | 7 #include <netinet/in.h> |
| 8 #include <netinet/tcp.h> | 8 #include <netinet/tcp.h> |
| 9 #include <pthread.h> | 9 #include <pthread.h> |
| 10 #include <signal.h> | 10 #include <signal.h> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "tools/android/common/net.h" | 24 #include "tools/android/common/net.h" |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| 28 const pthread_t kInvalidThread = static_cast<pthread_t>(-1); | 28 const pthread_t kInvalidThread = static_cast<pthread_t>(-1); |
| 29 volatile bool g_killed = false; | 29 volatile bool g_killed = false; |
| 30 | 30 |
| 31 void CloseSocket(int fd) { | 31 void CloseSocket(int fd) { |
| 32 if (fd >= 0) { | 32 if (fd >= 0) { |
| 33 int old_errno = errno; | 33 int old_errno = errno; |
| 34 (void) HANDLE_EINTR(close(fd)); | 34 close(fd); |
| 35 errno = old_errno; | 35 errno = old_errno; |
| 36 } | 36 } |
| 37 } | 37 } |
| 38 | 38 |
| 39 class Buffer { | 39 class Buffer { |
| 40 public: | 40 public: |
| 41 Buffer() | 41 Buffer() |
| 42 : bytes_read_(0), | 42 : bytes_read_(0), |
| 43 write_offset_(0) { | 43 write_offset_(0) { |
| 44 } | 44 } |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 for (int i = 0; i < g_server_count; i++) | 417 for (int i = 0; i < g_server_count; i++) |
| 418 g_servers[i].StartThread(); | 418 g_servers[i].StartThread(); |
| 419 for (int i = 0; i < g_server_count; i++) | 419 for (int i = 0; i < g_server_count; i++) |
| 420 g_servers[i].JoinThread(); | 420 g_servers[i].JoinThread(); |
| 421 g_server_count = 0; | 421 g_server_count = 0; |
| 422 delete [] g_servers; | 422 delete [] g_servers; |
| 423 | 423 |
| 424 return 0; | 424 return 0; |
| 425 } | 425 } |
| 426 | 426 |
| OLD | NEW |