From: Yedidya Feldblum Date: Sun, 23 Aug 2015 04:40:49 +0000 (-0700) Subject: Rename fixup from TNotificationQueue to NotificationQueue. X-Git-Tag: v0.55.0~5 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=88bee22f3b61a5b4fdae8fdfe4d5c831f254b970;p=folly.git Rename fixup from TNotificationQueue to NotificationQueue. Summary: [Folly] Rename fixup from TNotificationQueue to NotificationQueue. hg locate 'folly/**/*.{h,cpp}' | xargs perl -pi -e 's/TNotificationQueue/NotificationQueue/g' Reviewed By: @haijunz Differential Revision: D2373334 --- diff --git a/folly/io/async/test/NotificationQueueTest.cpp b/folly/io/async/test/NotificationQueueTest.cpp index 2bfc1365..1438ae88 100644 --- a/folly/io/async/test/NotificationQueueTest.cpp +++ b/folly/io/async/test/NotificationQueueTest.cpp @@ -572,11 +572,11 @@ TEST(NotificationQueueTest, DestroyCallbackPipe) { } /* - * Test code that creates a TNotificationQueue, then forks, and incorrectly + * Test code that creates a NotificationQueue, then forks, and incorrectly * tries to send a message to the queue from the child process. * * The child process should crash in this scenario, since the child code has a - * bug. (Older versions of TNotificationQueue didn't catch this in the child, + * bug. (Older versions of NotificationQueue didn't catch this in the child, * resulting in a crash in the parent process.) */ TEST(NotificationQueueTest, UseAfterFork) { @@ -631,7 +631,7 @@ TEST(NotificationQueueTest, UseAfterFork) { } // The child process should have crashed when it tried to call putMessage() - // on our TNotificationQueue. + // on our NotificationQueue. EXPECT_TRUE(WIFSIGNALED(childStatus)); EXPECT_EQ(SIGABRT, WTERMSIG(childStatus));