diff options
Diffstat (limited to 'adb/fdevent/fdevent_test.h')
-rw-r--r-- | adb/fdevent/fdevent_test.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/adb/fdevent/fdevent_test.h b/adb/fdevent/fdevent_test.h index ecda4da97..fcbf181dc 100644 --- a/adb/fdevent/fdevent_test.h +++ b/adb/fdevent/fdevent_test.h @@ -65,7 +65,7 @@ class FdeventTest : public ::testing::Test { ASSERT_EQ(0u, fdevent_installed_count()); } - // Register a dummy socket used to wake up the fdevent loop to tell it to die. + // Register a placeholder socket used to wake up the fdevent loop to tell it to die. void PrepareThread() { int dummy_fds[2]; if (adb_socketpair(dummy_fds) != 0) { @@ -84,7 +84,7 @@ class FdeventTest : public ::testing::Test { } size_t GetAdditionalLocalSocketCount() { - // dummy socket installed in PrepareThread() + // placeholder socket installed in PrepareThread() return 1; } |