1 | /* $Id: misc.h 30016 2010-06-03 18:31:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT - helpers (declarations/defines).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*
|
---|
19 | * This code is based on:
|
---|
20 | *
|
---|
21 | * Copyright (c) 1995 Danny Gasparovski.
|
---|
22 | *
|
---|
23 | * Please read the file COPYRIGHT for the
|
---|
24 | * terms and conditions of the copyright.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef _MISC_H_
|
---|
28 | #define _MISC_H_
|
---|
29 |
|
---|
30 |
|
---|
31 | void getouraddr (PNATState);
|
---|
32 | void slirp_insque (PNATState, void *, void *);
|
---|
33 | void slirp_remque (PNATState, void *);
|
---|
34 | void fd_nonblock (int);
|
---|
35 |
|
---|
36 | /* UVM interface */
|
---|
37 | #define UMA_ALIGN_PTR (1 << 0)
|
---|
38 | #define UMA_ZONE_REFCNT (1 << 1)
|
---|
39 | #define UMA_ZONE_MAXBUCKET (1 << 2)
|
---|
40 | #define UMA_ZONE_ZINIT (1 << 3)
|
---|
41 | #define UMA_SLAB_KERNEL (1 << 4)
|
---|
42 | #define UMA_ZFLAG_FULL (1 << 5)
|
---|
43 |
|
---|
44 | struct uma_zone;
|
---|
45 | typedef struct uma_zone *uma_zone_t;
|
---|
46 | typedef void *(*uma_alloc_t)(uma_zone_t, int, u_int8_t *, int);
|
---|
47 | typedef void (*uma_free_t)(void *, int, u_int8_t);
|
---|
48 |
|
---|
49 | typedef int (*ctor_t)(PNATState, void *, int, void *, int);
|
---|
50 | typedef void (*dtor_t)(PNATState, void *, int, void *);
|
---|
51 | typedef int (*zinit_t)(PNATState, void *, int, int);
|
---|
52 | typedef void (*zfini_t)(PNATState, void *, int);
|
---|
53 | uma_zone_t uma_zcreate(PNATState, char *, size_t, ctor_t, dtor_t, zinit_t, zfini_t, int, int);
|
---|
54 | uma_zone_t uma_zsecond_create(char *, ctor_t, dtor_t, zinit_t, zfini_t, uma_zone_t);
|
---|
55 | void uma_zone_set_max(uma_zone_t, int);
|
---|
56 | void uma_zone_set_allocf(uma_zone_t, uma_alloc_t);
|
---|
57 | void uma_zone_set_freef(uma_zone_t, uma_free_t);
|
---|
58 |
|
---|
59 | uint32_t *uma_find_refcnt(uma_zone_t, void *);
|
---|
60 | void *uma_zalloc(uma_zone_t, int);
|
---|
61 | void *uma_zalloc_arg(uma_zone_t, void *, int);
|
---|
62 | void uma_zfree(uma_zone_t, void *);
|
---|
63 | void uma_zfree_arg(uma_zone_t, void *, void *);
|
---|
64 | int uma_zone_exhausted_nolock(uma_zone_t);
|
---|
65 | void zone_drain(uma_zone_t);
|
---|
66 |
|
---|
67 | void slirp_null_arg_free(void *, void *);
|
---|
68 | void m_fini(PNATState pData);
|
---|
69 |
|
---|
70 | #endif
|
---|