ExternalACLEntry.h \
FadingCounter.h \
FadingCounter.cc \
+ fatal.h \
+ fatal.cc \
fd.h \
fd.cc \
fde.cc \
cbdata.cc \
cbdata.h \
ETag.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
HttpBody.h \
HttpBody.cc \
HttpHeaderFieldStat.h \
DiskIO/WriteRequest.cc \
ETag.cc \
event.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
FileMap.h \
filemap.cc \
HelperChildConfig.h \
event.cc \
external_acl.cc \
ExternalACLEntry.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
fde.cc \
ETag.cc \
EventLoop.cc \
event.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
FileMap.h \
external_acl.cc \
ExternalACLEntry.cc \
FadingCounter.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
fde.cc \
external_acl.cc \
ExternalACLEntry.cc \
FadingCounter.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
fde.cc \
external_acl.cc \
ExternalACLEntry.cc \
FadingCounter.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
fde.cc \
ETag.cc \
external_acl.cc \
ExternalACLEntry.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
fde.cc \
ETag.cc \
event.cc \
EventLoop.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
FileMap.h \
filemap.cc \
HttpHeaderFieldStat.h \
store_rebuild.h \
tests/stub_store_rebuild.cc \
tests/stub_store_stats.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
client_db.h \
ETag.cc \
EventLoop.cc \
event.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
FileMap.h \
store_rebuild.h \
tests/stub_store_rebuild.cc \
tests/stub_store_stats.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
disk.h \
event.cc \
external_acl.cc \
ExternalACLEntry.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
fd.h \
fd.cc \
fde.cc \
MemBuf.cc \
String.cc \
ConfigParser.cc \
+ fatal.h \
+ tests/stub_fatal.cc \
tests/testMain.cc \
tests/testConfigParser.cc \
tests/testConfigParser.h \
--- /dev/null
+/*
+ * SQUID Web Proxy Cache http://www.squid-cache.org/
+ * ----------------------------------------------------------
+ *
+ * Squid is the result of efforts by numerous individuals from
+ * the Internet community; see the CONTRIBUTORS file for full
+ * details. Many organizations have provided support for Squid's
+ * development; see the SPONSORS file for full details. Squid is
+ * Copyrighted (C) 2001 by the Regents of the University of
+ * California; see the COPYRIGHT file for full details. Squid
+ * incorporates software developed and/or copyrighted by other
+ * sources; see the CREDITS file for full details.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
+ *
+ */
+
+#include "squid.h"
+
+#define STUB_API "fatal.cc"
+#include "tests/STUB.h"
+
+void fatal(const char *message) STUB
+void fatal_common(const char *message) STUB
+void fatalf(const char *fmt,...) STUB
+void fatalvf(const char *fmt, va_list args) STUB
+void fatal_dump(const char *message) STUB
void death(int sig) STUB
void BroadcastSignalIfAny(int& sig) STUB
void sigusr2_handle(int sig) STUB
-void fatal(const char *message) STUB
-void fatal_common(const char *message) STUB
-void fatalf(const char *fmt,...) STUB
-void fatalvf(const char *fmt, va_list args) STUB
-void fatal_dump(const char *message) STUB
void debug_trap(const char *message) STUB
void sig_child(int sig) STUB
void sig_shutdown(int sig) STUB
tcp_banger2_LDADD = $(top_builddir)/lib/libmiscutil.la
-DEBUG_SOURCE = test_tools.cc stub_debug.cc stub_tools.cc
+DEBUG_SOURCE = test_tools.cc stub_debug.cc stub_tools.cc stub_fatal.cc
stub_debug.cc: $(top_srcdir)/src/tests/stub_debug.cc
cp $(top_srcdir)/src/tests/stub_debug.cc .
stub_tools.cc: $(top_srcdir)/src/tests/stub_tools.cc
cp $(top_srcdir)/src/tests/stub_tools.cc .
-CLEANFILES += stub_debug.cc stub_tools.cc
+stub_fatal.cc: $(top_srcdir)/src/tests/stub_fatal.cc
+ cp $(top_srcdir)/src/tests/stub_fatal.cc .
+
+CLEANFILES += stub_debug.cc stub_tools.cc stub_fatal.cc
## XXX: somewhat broken. Its meant to test our debugs() implementation.
## but it has never been linked to the actual src/debug.cc implementation !!