]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_cbdata.cc
Merge from trunk rev.13584
[thirdparty/squid.git] / src / tests / stub_cbdata.cc
1 /*
2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #include "squid.h"
10 #include "cbdata.h"
11
12 #define STUB_API "cbdata.cc"
13 #include "tests/STUB.h"
14
15 void cbdataRegisterWithCacheManager(void) STUB
16
17 #if USE_CBDATA_DEBUG
18 void *cbdataInternalAllocDbg(cbdata_type type, const char *, int) STUB_RETVAL(NULL)
19 void *cbdataInternalFreeDbg(void *p, const char *, int) STUB_RETVAL(NULL)
20 void cbdataInternalLockDbg(const void *p, const char *, int) STUB
21 void cbdataInternalUnlockDbg(const void *p, const char *, int) STUB
22 int cbdataInternalReferenceDoneValidDbg(void **p, void **tp, const char *, int) STUB_RETVAL(0)
23 #else
24 void *cbdataInternalAlloc(cbdata_type type) STUB_RETVAL(NULL)
25 void *cbdataInternalFree(void *p) STUB_RETVAL(NULL)
26 void cbdataInternalLock(const void *p) STUB
27 void cbdataInternalUnlock(const void *p) STUB
28 int cbdataInternalReferenceDoneValid(void **p, void **tp) STUB_RETVAL(0)
29 #endif
30
31 int cbdataReferenceValid(const void *p) STUB_RETVAL(0)
32 cbdata_type cbdataInternalAddType(cbdata_type type, const char *label, int size, FREE * free_func) STUB_RETVAL(CBDATA_UNKNOWN)