Deleted Added
full compact
ng_uni_cust.h (159166) ng_uni_cust.h (189170)
1/*-
2 * Copyright (c) 2001-2003
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 *
6 * Author: Hartmut Brandt <harti@freebsd.org>
7 *
8 * Redistribution and use in source and binary forms, with or without

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * Customisation of signalling source to the NG environment.
30 *
1/*-
2 * Copyright (c) 2001-2003
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 *
6 * Author: Hartmut Brandt <harti@freebsd.org>
7 *
8 * Redistribution and use in source and binary forms, with or without

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * Customisation of signalling source to the NG environment.
30 *
31 * $FreeBSD: head/sys/netgraph/atm/uni/ng_uni_cust.h 159166 2006-06-02 09:08:51Z dds $
31 * $FreeBSD: head/sys/netgraph/atm/uni/ng_uni_cust.h 189170 2009-02-28 16:21:25Z ed $
32 */
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/kernel.h>
37#include <sys/malloc.h>
38#include <sys/queue.h>
39#include <sys/lock.h>

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

141#define UNICORE \
142size_t unimem_sizes[UNIMEM_TYPES] = { \
143 [UNIMEM_INS] = sizeof(struct uni), \
144 [UNIMEM_ALL] = sizeof(struct uni_all), \
145 [UNIMEM_SIG] = sizeof(struct sig), \
146 [UNIMEM_CALL] = sizeof(struct call), \
147 [UNIMEM_PARTY] = sizeof(struct party) \
148};
32 */
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/kernel.h>
37#include <sys/malloc.h>
38#include <sys/queue.h>
39#include <sys/lock.h>

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

141#define UNICORE \
142size_t unimem_sizes[UNIMEM_TYPES] = { \
143 [UNIMEM_INS] = sizeof(struct uni), \
144 [UNIMEM_ALL] = sizeof(struct uni_all), \
145 [UNIMEM_SIG] = sizeof(struct sig), \
146 [UNIMEM_CALL] = sizeof(struct call), \
147 [UNIMEM_PARTY] = sizeof(struct party) \
148};
149
150#define memmove(T, F, L) bcopy((F), (T), (L))