2013-10-21 01:07:47 +02:00
|
|
|
/*
|
|
|
|
* Written by Mark Hemment, 1996 (markhe@nextd.demon.co.uk).
|
|
|
|
*
|
|
|
|
* (C) SGI 2006, Christoph Lameter
|
|
|
|
* Cleaned up and restructured to ease the addition of alternative
|
|
|
|
* implementations of SLAB allocators.
|
2013-10-26 15:31:36 +02:00
|
|
|
* (C) Linux Foundation 2008-2013
|
|
|
|
* Unified interface for all slab allocators
|
2013-10-21 01:07:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_SLAB_H
|
|
|
|
#define _LINUX_SLAB_H
|
2011-06-24 12:45:58 +02:00
|
|
|
|
2013-02-13 09:23:54 +01:00
|
|
|
#include <errno.h>
|
2011-06-24 12:45:58 +02:00
|
|
|
// stub
|
2013-10-21 01:07:47 +02:00
|
|
|
#endif /* _LINUX_SLAB_H */
|