OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:g_atfork_child_calls
(Results
1 - 2
of
2
) sorted by null
/bionic/tests/
pthread_dlfcn_test.cpp
34
static int
g_atfork_child_calls
= 0;
variable
35
static void AtForkChild1() {
g_atfork_child_calls
= (
g_atfork_child_calls
* 10) + 1; }
36
static void AtForkChild2() {
g_atfork_child_calls
= (
g_atfork_child_calls
* 10) + 2; }
37
static void AtForkChild3() {
g_atfork_child_calls
= (
g_atfork_child_calls
* 10) + 3; }
38
static void AtForkChild4() {
g_atfork_child_calls
= (
g_atfork_child_calls
* 10) + 4; }
64
ASSERT_EQ(1234,
g_atfork_child_calls
);
[
all
...]
pthread_test.cpp
1280
static int
g_atfork_child_calls
= 0;
variable
[
all
...]
Completed in 91 milliseconds