Add missing umem bits

This commit is contained in:
Brian Behlendorf 2008-12-19 12:32:08 -08:00
parent 55c0063df6
commit b86297e4d3
1 changed files with 13 additions and 0 deletions

View File

@ -42,9 +42,22 @@
extern "C" { extern "C" {
#endif #endif
typedef void vmem_t;
/*
* Flags for umem_alloc/umem_free
*/
#define UMEM_DEFAULT 0x0000 /* normal -- may fail */ #define UMEM_DEFAULT 0x0000 /* normal -- may fail */
#define UMEM_NOFAIL 0x0100 /* Never fails */ #define UMEM_NOFAIL 0x0100 /* Never fails */
/*
* Flags for umem_cache_create()
*/
#define UMC_NOTOUCH 0x00010000
#define UMC_NODEBUG 0x00020000
#define UMC_NOMAGAZINE 0x00040000
#define UMC_NOHASH 0x00080000
#define UMEM_CACHE_NAMELEN 31 #define UMEM_CACHE_NAMELEN 31
typedef int umem_nofail_callback_t(void); typedef int umem_nofail_callback_t(void);