Lines Matching full:map1
57 static char *map1; variable
106 * map1 + (i * RIM_CHUNK_SIZE)
118 chunk_start = (char *)((unsigned long)map1 + in compute_chunk_start_addr()
184 * address == map1 +
577 mprotect(map1, size, PROT_READ); in mem_snapshot_fn()
580 * Load from the working alias (map1). Loading from map2 in mem_snapshot_fn()
583 memcpy(tmp, map1, size); in mem_snapshot_fn()
597 mprotect(map1, size, PROT_READ|PROT_WRITE); in mem_snapshot_fn()
658 map1 = shmat(shmid, NULL, 0); in main()
659 if (map1 == (void *) -1) { in main()
676 …printf("Allocated address:0x%016lx + secondary map:0x%016lx\n", (unsigned long)map1, (unsigned lon… in main()
714 pthread_create(&mem_snapshot_thread, &attr, mem_snapshot_fn, map1); in main()