taglinefilesource code
attaches17include/linux/shm.hstruct vm_area_struct *attaches; /* descriptors for attaches */
attaches117ipc/shm.cshp->attaches = NULL;
attaches378ipc/shm.cstruct vm_area_struct * attaches;
attaches380ipc/shm.cif ((attaches = shp->attaches)) {
attaches381ipc/shm.cshmd->vm_next_share = attaches;
attaches382ipc/shm.cshmd->vm_prev_share = attaches->vm_prev_share;
attaches384ipc/shm.cattaches->vm_prev_share = shmd;
attaches386ipc/shm.cshp->attaches = shmd->vm_next_share = shmd->vm_prev_share = shmd;
attaches393ipc/shm.cif (shp->attaches != shmd) {
attaches404ipc/shm.cshp->attaches = NULL;
attaches406ipc/shm.cif (shp->attaches == shmd)
attaches407ipc/shm.cshp->attaches = shmd->vm_next_share;
attaches714ipc/shm.cif (shp->attaches)
attaches715ipc/shm.cfor (shmd = shp->attaches; ; ) {
attaches760ipc/shm.cif ((shmd = shmd->vm_next_share) == shp->attaches)