taglinefilesource code
attaches20include/linux/shm.hstruct vm_area_struct *attaches; /* descriptors for attaches */
attaches118ipc/shm.cshp->attaches = NULL;
attaches379ipc/shm.cstruct vm_area_struct * attaches;
attaches381ipc/shm.cif ((attaches = shp->attaches)) {
attaches382ipc/shm.cshmd->vm_next_share = attaches;
attaches383ipc/shm.cshmd->vm_prev_share = attaches->vm_prev_share;
attaches385ipc/shm.cattaches->vm_prev_share = shmd;
attaches387ipc/shm.cshp->attaches = shmd->vm_next_share = shmd->vm_prev_share = shmd;
attaches394ipc/shm.cif (shp->attaches != shmd) {
attaches405ipc/shm.cshp->attaches = NULL;
attaches407ipc/shm.cif (shp->attaches == shmd)
attaches408ipc/shm.cshp->attaches = shmd->vm_next_share;
attaches723ipc/shm.cif (shp->attaches)
attaches724ipc/shm.cfor (shmd = shp->attaches; ; ) {
attaches771ipc/shm.cif ((shmd = shmd->vm_next_share) == shp->attaches)