Doh, commit in a wrong directory. Fix r290857.
MFC after: 1 month Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
95631a07b2
commit
a63513d71a
@ -405,7 +405,8 @@ char *prison_name(struct prison *, struct prison *);
|
||||
int prison_priv_check(struct ucred *cred, int priv);
|
||||
int sysctl_jail_param(SYSCTL_HANDLER_ARGS);
|
||||
void prison_racct_foreach(void (*callback)(struct racct *racct,
|
||||
void *arg2, void *arg3), void *arg2, void *arg3);
|
||||
void *arg2, void *arg3), void (*pre)(void), void (*post)(void),
|
||||
void *arg2, void *arg3);
|
||||
struct prison_racct *prison_racct_find(const char *name);
|
||||
void prison_racct_hold(struct prison_racct *prr);
|
||||
void prison_racct_free(struct prison_racct *prr);
|
||||
|
@ -48,6 +48,7 @@ void loginclass_hold(struct loginclass *lc);
|
||||
void loginclass_free(struct loginclass *lc);
|
||||
struct loginclass *loginclass_find(const char *name);
|
||||
void loginclass_racct_foreach(void (*callback)(struct racct *racct,
|
||||
void *arg2, void *arg3), void *arg2, void *arg3);
|
||||
void *arg2, void *arg3), void (*pre)(void), void (*post)(void),
|
||||
void *arg2, void *arg3);
|
||||
|
||||
#endif /* !_SYS_LOGINCLASS_H_ */
|
||||
|
@ -156,7 +156,8 @@ void uihashinit(void);
|
||||
void uihold(struct uidinfo *uip);
|
||||
#ifdef RACCT
|
||||
void ui_racct_foreach(void (*callback)(struct racct *racct,
|
||||
void *arg2, void *arg3), void *arg2, void *arg3);
|
||||
void *arg2, void *arg3), void (*pre)(void), void (*post)(void),
|
||||
void *arg2, void *arg3);
|
||||
#endif
|
||||
|
||||
#endif /* _KERNEL */
|
||||
|
Loading…
x
Reference in New Issue
Block a user