Lines Matching refs:map_address
92 void *map_address; /* pointer to file in memory */ variable
164 if (scp->edi == (int)map_address) { in sig_handler()
168 } else if (scp->esi == (int)map_address) { in sig_handler()
178 (unsigned long)scp->esi, map_address); in sig_handler()
248 if ((map_address = shmat(shmid, NULL, 0)) in shmat_shmdt()
251 map_address); in shmat_shmdt()
260 memset(map_address, 'X', 1); in shmat_shmdt()
266 STR_SHMAT, pthread_self(), map_address); in shmat_shmdt()
275 if (shmdt((void *)map_address) == -1) { in shmat_shmdt()
314 map_address); in write_to_mem()
319 STR_WRITER, pthread_self(), map_address); in write_to_mem()
320 memset(map_address, 'Y', 1); in write_to_mem()
353 STR_READER, pthread_self(), map_address); in read_from_mem()
357 map_address); in read_from_mem()
361 STR_READER, pthread_self(), (char *)map_address); in read_from_mem()
363 if (strncmp(map_address, "Y", 1) != 0) { in read_from_mem()
364 if (strncmp(map_address, "X", 1) != 0) { in read_from_mem()