Lines Matching full:ids
62 to map from semaphore, message-queue, and shared-memory IDs to the data
65 ids->sem semaphore.
69 the remainder of the new, updates the ids->entries pointer to point to
71 Note that rcu_assign_pointer() is used to update the ids->entries pointer,
75 static int grow_ary(struct ipc_ids* ids, int newsize)
80 int size = ids->entries->size;
92 memcpy(new->p, ids->entries->p,
98 old = ids->entries;
105 rcu_assign_pointer(ids->entries, new);
127 struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id)
134 entries = rcu_dereference(ids->entries);