Home | History | Annotate | Download | only in tests

Lines Matching defs:guard_size

575   size_t guard_size;
576 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
577 ASSERT_EQ(128U, guard_size);
582 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
583 ASSERT_EQ(32*1024U, guard_size);
587 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
588 ASSERT_EQ(32*1024U + 1, guard_size);
831 size_t guard_size;
832 ASSERT_EQ(0, pthread_attr_getguardsize(&attributes, &guard_size));
833 ASSERT_EQ(0U, guard_size); // The main thread has no guard page.