Home | History | Annotate | Download | only in sys

Lines Matching defs:map1

626 	void *map1 = MAP_FAILED, *map2 = MAP_FAILED, *map3 = MAP_FAILED;
628 map1 = mmap(hint, page, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
629 if (map1 == MAP_FAILED) {
633 map2 = mmap(map1, page, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
635 atf_tc_fail_nonfatal("mmap2 hint=%p map1=%p failed: errno=%d",
636 hint, map1, errno);
641 atf_tc_fail_nonfatal("mmap3 hint=%p map1=%p failed: errno=%d",
642 hint, map1, errno);
654 if (map1 != MAP_FAILED) {
655 ATF_CHECK_MSG(munmap(map1, page) == 0, "munmap1 %p hint=%p",
656 map1, hint);