]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_cbdata.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_cbdata.cc
1 /*
2 * Copyright (C) 1996-2015 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 void *cbdataInternalAlloc(cbdata_type type, const char *, int) STUB_RETVAL(NULL)
18 void *cbdataInternalFree(void *p, const char *, int) STUB_RETVAL(NULL)
19 #if USE_CBDATA_DEBUG
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 cbdataInternalLock(const void *p) STUB
25 void cbdataInternalUnlock(const void *p) STUB
26 int cbdataInternalReferenceDoneValid(void **p, void **tp) STUB_RETVAL(0)
27 #endif
28
29 int cbdataReferenceValid(const void *p) STUB_RETVAL(0)
30 cbdata_type cbdataInternalAddType(cbdata_type type, const char *label, int size, FREE * free_func) STUB_RETVAL(CBDATA_UNKNOWN)
31