Deleted Added
full compact
jailp.h (234988) jailp.h (235789)
1/*-
2 * Copyright (c) 2011 James Gritton.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2011 James Gritton.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/usr.sbin/jail/jailp.h 234988 2012-05-03 21:39:23Z jamie $
26 * $FreeBSD: head/usr.sbin/jail/jailp.h 235789 2012-05-22 16:33:10Z bapt $
27 */
28
29#include <sys/param.h>
30#include <sys/types.h>
31#include <sys/jail.h>
32#include <sys/queue.h>
33#include <sys/time.h>
34

--- 182 unchanged lines hidden (view full) ---

217extern void dep_reset(struct cfjail *j);
218extern struct cfjail *next_jail(void);
219extern int start_state(const char *target, int docf, unsigned state,
220 int running);
221extern void requeue(struct cfjail *j, struct cfjails *queue);
222
223extern void yyerror(const char *);
224extern int yylex(void);
27 */
28
29#include <sys/param.h>
30#include <sys/types.h>
31#include <sys/jail.h>
32#include <sys/queue.h>
33#include <sys/time.h>
34

--- 182 unchanged lines hidden (view full) ---

217extern void dep_reset(struct cfjail *j);
218extern struct cfjail *next_jail(void);
219extern int start_state(const char *target, int docf, unsigned state,
220 int running);
221extern void requeue(struct cfjail *j, struct cfjails *queue);
222
223extern void yyerror(const char *);
224extern int yylex(void);
225extern int yyparse(void);
226
227extern struct cfjails cfjails;
228extern struct cfjails ready;
229extern struct cfjails depend;
230extern const char *cfname;
231extern int note_remove;
232extern int paralimit;
233extern int verbose;
225
226extern struct cfjails cfjails;
227extern struct cfjails ready;
228extern struct cfjails depend;
229extern const char *cfname;
230extern int note_remove;
231extern int paralimit;
232extern int verbose;