825566f82f
things a bit. * Some style cleanup. * The object depot does now have a cookie that will be passed to the return hook. * Fixed object_cache_return_object_wrapper() using the new cookie. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35174 a95241bf-73f2-0310-859d-f6bbb57e9c96
47 lines
1005 B
C
47 lines
1005 B
C
/*
|
|
* Copyright 2007, Hugo Santos. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SLAB_OBJECT_DEPOT_H_
|
|
#define _SLAB_OBJECT_DEPOT_H_
|
|
|
|
|
|
#include <lock.h>
|
|
#include <KernelExport.h>
|
|
|
|
|
|
struct DepotMagazine;
|
|
|
|
typedef struct object_depot {
|
|
recursive_lock lock;
|
|
DepotMagazine* full;
|
|
DepotMagazine* empty;
|
|
size_t full_count;
|
|
size_t empty_count;
|
|
struct depot_cpu_store* stores;
|
|
|
|
void* cookie;
|
|
void (*return_object)(struct object_depot* depot, void* cookie,
|
|
void* object);
|
|
} object_depot;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t object_depot_init(object_depot* depot, uint32 flags, void *cookie,
|
|
void (*returnObject)(object_depot* depot, void* cookie, void* object));
|
|
void object_depot_destroy(object_depot* depot);
|
|
|
|
void* object_depot_obtain(object_depot* depot);
|
|
int object_depot_store(object_depot* depot, void* object);
|
|
|
|
void object_depot_make_empty(object_depot* depot);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SLAB_OBJECT_DEPOT_H_ */
|