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