* Change the count associated with number of processes * a given user is using. When 'max' is 0, don't enforce a limit */
| 1510 | * a given user is using. When 'max' is 0, don't enforce a limit |
| 1511 | */ |
| 1512 | int |
| 1513 | chgproccnt(struct uidinfo *uip, int diff, rlim_t max) |
| 1514 | { |
| 1515 | |
| 1516 | return (chglimit(uip, &uip->ui_proccnt, diff, max, "proccnt")); |
| 1517 | } |
| 1518 | |
| 1519 | /* |
| 1520 | * Change the total socket buffer size a user has used. |
no test coverage detected