Lines Matching defs:limit
49 the default priority limit. This number is followed
58 be used. If the default limit is missing, zero will be used.
102 if any, and the first priority limit. p is left pointing
103 to the colon (:) in the line with the first limit. */
168 Inputs: A pointer to a limit structure, and a user.
169 Ouputs: The limit structure is modified.
174 int add_user ( struct user_priority * ppri_tbl, char * user, int limit )
176 if (limit < PRI_MIN || PRI_MAX < limit)
178 addlist (&(ppri_tbl->users[limit - PRI_MIN]), user);
245 int limit;
247 for (limit = PRI_MIN; limit <= PRI_MAX; limit++)
248 if (searchlist(user, ppri_tbl->users[limit - PRI_MIN]))
250 dellist (&(ppri_tbl->users[limit - PRI_MIN]), user);