Lines Matching defs:shmaddr
9 * 1) shmat() chooses a suitable (unused) address when shmaddr is NULL.
10 * 2) shmat() attaches shm segment to the shmaddr when shmaddr is a
12 * 3) shmat() attaches shm segment to the address equal to shmaddr rounded
13 * down to the nearest multiple of SHMLBA when shmaddr is a page-unaligned
15 * 4) shmat() attaches shm segment to the shmaddr for reading when shmflg
40 void **shmaddr;
90 addr = shmat(shm_id, *tc->shmaddr, tc->flag);
108 if (expected_addr(*tc->shmaddr, addr) != addr) {
111 addr, expected_addr(*tc->shmaddr, addr));