Home | History | Annotate | Download | only in src

Lines Matching defs:cur_map

34   struct map_info *cur_map;
40 cur_map = map_alloc_info ();
41 if (cur_map == NULL)
44 cur_map->next = *map_list;
45 cur_map->start = info->dlpi_addr + info->dlpi_phdr[i].p_vaddr;
46 cur_map->end = cur_map->start + info->dlpi_phdr[i].p_memsz;
47 cur_map->offset = info->dlpi_phdr[i].p_offset;
48 cur_map->path = strdup(info->dlpi_name);
49 mutex_init (&cur_map->ei_lock);
50 cur_map->ei.size = 0;
51 cur_map->ei.image = NULL;
52 cur_map->ei.shared = 0;
54 *map_list = cur_map;