Futex::futexWait returns FutexResult
[folly.git] / folly / test / AtForkTest.cpp
1 /*
2  * Copyright 2017-present Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include <folly/detail/AtFork.h>
17
18 #include <folly/portability/GTest.h>
19 #include <glog/logging.h>
20
21 TEST(ThreadLocal, AtFork) {
22   int foo;
23   bool forked = false;
24   folly::detail::AtFork::registerHandler(
25       &foo, [&] { forked = true; }, [] {}, [] {});
26   auto pid = fork();
27   if (pid) {
28     int status;
29     auto pid2 = wait(&status);
30     EXPECT_EQ(status, 0);
31     EXPECT_EQ(pid, pid2);
32   } else {
33     exit(0);
34   }
35   EXPECT_TRUE(forked);
36   forked = false;
37   folly::detail::AtFork::unregisterHandler(&foo);
38   pid = fork();
39   if (pid) {
40     int status;
41     auto pid2 = wait(&status);
42     EXPECT_EQ(status, 0);
43     EXPECT_EQ(pid, pid2);
44   } else {
45     exit(0);
46   }
47   EXPECT_FALSE(forked);
48 }