Lines Matching full:ids
52 to map from semaphore, message-queue, and shared-memory IDs to the data
55 ids->sem semaphore.
59 the remainder of the new, updates the ids->entries pointer to point to
61 Note that rcu_assign_pointer() is used to update the ids->entries pointer,
65 static int grow_ary(struct ipc_ids* ids, int newsize)
70 int size = ids->entries->size;
82 memcpy(new->p, ids->entries->p,
88 old = ids->entries;
95 rcu_assign_pointer(ids->entries, new);
117 struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id)
124 entries = rcu_dereference(ids->entries);