OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:g_atfork_parent_calls
(Results
1 - 2
of
2
) sorted by null
/bionic/tests/
pthread_dlfcn_test.cpp
28
static int
g_atfork_parent_calls
= 0;
variable
29
static void AtForkParent1() {
g_atfork_parent_calls
= (
g_atfork_parent_calls
* 10) + 1; }
30
static void AtForkParent2() {
g_atfork_parent_calls
= (
g_atfork_parent_calls
* 10) + 2; }
31
static void AtForkParent3() {
g_atfork_parent_calls
= (
g_atfork_parent_calls
* 10) + 3; }
32
static void AtForkParent4() {
g_atfork_parent_calls
= (
g_atfork_parent_calls
* 10) + 4; }
68
ASSERT_EQ(1234,
g_atfork_parent_calls
);
[
all
...]
pthread_test.cpp
1277
static int
g_atfork_parent_calls
= 0;
variable
[
all
...]
Completed in 189 milliseconds