Revision: 14563
Author: [email protected]
Date: Sat Apr 10 16:20:36 2010
Log: Correct header guards and comments in lib*
http://code.google.com/p/lusca-cache/source/detail?r=14563
Modified:
/branches/LUSCA_HEAD/libasyncio/async_io.h
/branches/LUSCA_HEAD/libcore/debug.h
/branches/LUSCA_HEAD/libcore/gb.h
/branches/LUSCA_HEAD/libcore/radix.h
/branches/LUSCA_HEAD/libiapp/ssl_support.h
/branches/LUSCA_HEAD/libmem/buf.h
/branches/LUSCA_HEAD/libmime/MimeHdrs.h
/branches/LUSCA_HEAD/libsqdebug/ctx.h
/branches/LUSCA_HEAD/libsqdebug/debug.h
/branches/LUSCA_HEAD/libsqdebug/debug_file.h
/branches/LUSCA_HEAD/libsqstore/rebuild_entry.h
/branches/LUSCA_HEAD/libsqstore/ufs_utils.h
=======================================
--- /branches/LUSCA_HEAD/libasyncio/async_io.h Sun Aug 9 21:22:14 2009
+++ /branches/LUSCA_HEAD/libasyncio/async_io.h Sat Apr 10 16:20:36 2010
@@ -1,11 +1,11 @@
/*
- * store_aufs.h
+ * async_io.h
*
* Internal declarations for the aufs routines
*/
-#ifndef __ASYNC_IO_H__
-#define __ASYNC_IO_H__
+#ifndef __LIBASYNCIO_ASYNC_IO_H__
+#define __LIBASYNCIO_ASYNC_IO_H__
extern int n_asyncufs_dirs;
extern int squidaio_nthreads;
=======================================
--- /branches/LUSCA_HEAD/libcore/debug.h Tue Dec 30 12:03:16 2008
+++ /branches/LUSCA_HEAD/libcore/debug.h Sat Apr 10 16:20:36 2010
@@ -1,4 +1,5 @@
#ifndef __LIBCORE_DEBUG_H__
+#define __LIBCORE_DEBUG_H__
#include "../libsqdebug/debug.h"
=======================================
--- /branches/LUSCA_HEAD/libcore/gb.h Sun Apr 13 09:25:08 2008
+++ /branches/LUSCA_HEAD/libcore/gb.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __LIBCORE_GB_UTILS_H__
-#define __LIBCORE_GB_UTILS_H__
+#ifndef __LIBCORE_GB_H__
+#define __LIBCORE_GB_H__
/* Origin: squid/src/typedefs.h ; squid/src/protos.h ; squid/src/defines.h
*/
=======================================
--- /branches/LUSCA_HEAD/libcore/radix.h Mon Jun 1 02:11:38 2009
+++ /branches/LUSCA_HEAD/libcore/radix.h Sat Apr 10 16:20:36 2010
@@ -57,8 +57,8 @@
/* $Id: radix.h,v 1.9 2007/10/24 06:03:08 djm Exp $ */
-#ifndef _RADIX_H
-#define _RADIX_H
+#ifndef __LIBCORE_RADIX_H__
+#define __LIBCORE_RADIX_H__
#if defined(_MSC_VER)
#include <winsock2.h>
@@ -160,4 +160,4 @@
const char *prefix_addr_ntop(prefix_t *prefix, char *buf, size_t len);
const char *prefix_ntop(prefix_t *prefix, char *buf, size_t len);
-#endif /* _RADIX_H */
+#endif /* __LIBCORE_RADIX_H__ */
=======================================
--- /branches/LUSCA_HEAD/libiapp/ssl_support.h Thu Jul 3 01:24:49 2008
+++ /branches/LUSCA_HEAD/libiapp/ssl_support.h Sat Apr 10 16:20:36 2010
@@ -32,8 +32,8 @@
*
*/
-#ifndef SQUID_SSL_SUPPORT_H
-#define SQUID_SSL_SUPPORT_H
+#ifndef __LIBIAPP_SSL_SUPPORT_H__
+#define __LIBIAPP_SSL_SUPPORT_H__
#include "config.h"
#if HAVE_OPENSSL_SSL_H
@@ -73,4 +73,4 @@
#endif
-#endif /* SQUID_SSL_SUPPORT_H */
+#endif /* __LIBIAPP_SSL_SUPPORT_H__ */
=======================================
--- /branches/LUSCA_HEAD/libmem/buf.h Thu May 21 01:42:16 2009
+++ /branches/LUSCA_HEAD/libmem/buf.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __BUF_H__
-#define __BUF_H__
+#ifndef __LIBMEM_BUF_H__
+#define __LIBMEM_BUF_H__
#define BUF_TRACK_BUFS 0
=======================================
--- /branches/LUSCA_HEAD/libmime/MimeHdrs.h Fri Dec 26 08:42:32 2008
+++ /branches/LUSCA_HEAD/libmime/MimeHdrs.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __LIBHTTP_MIMEHDRS_H__
-#define __LIBHTTP_MIMEHDRS_H__
+#ifndef __LIBMIME_MIMEHDRS_H__
+#define __LIBMIME_MIMEHDRS_H__
extern size_t headersEnd(const char *mime, size_t l);
=======================================
--- /branches/LUSCA_HEAD/libsqdebug/ctx.h Wed Jul 22 07:37:20 2009
+++ /branches/LUSCA_HEAD/libsqdebug/ctx.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __LIBCORE_CTX_H__
-#define __LIBCORE_CTX_H__
+#ifndef __LIBSQDEBUG_CTX_H__
+#define __LIBSQDEBUG_CTX_H__
typedef int Ctx;
extern int Ctx_Lock;
=======================================
--- /branches/LUSCA_HEAD/libsqdebug/debug.h Wed Jul 22 07:37:20 2009
+++ /branches/LUSCA_HEAD/libsqdebug/debug.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __LIBCORE_DEBUG_H__
-#define __LIBCORE_DEBUG_H__
+#ifndef __LIBSQDEBUG_DEBUG_H__
+#define __LIBSQDEBUG_DEBUG_H__
#define MAX_DEBUG_SECTIONS 100
@@ -40,4 +40,4 @@
extern void _db_init_log(const char *logfile);
-#endif /* __LIBCORE_DEBUG_H__ */
+#endif /* __LIBSQDEBUG_DEBUG_H__ */
=======================================
--- /branches/LUSCA_HEAD/libsqdebug/debug_file.h Thu Jan 15 20:18:47 2009
+++ /branches/LUSCA_HEAD/libsqdebug/debug_file.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __LIBSQDEBUG_DEBUG_H__
-#define __LIBSQDEBUG_DEBUG_H__
+#ifndef __LIBSQDEBUG_DEBUG_FILE_H__
+#define __LIBSQDEBUG_DEBUG_FILE_H__
extern FILE *debug_log; /* NULL */
extern int opt_debug_rotate_count;
=======================================
--- /branches/LUSCA_HEAD/libsqstore/rebuild_entry.h Wed Jul 22 07:37:20 2009
+++ /branches/LUSCA_HEAD/libsqstore/rebuild_entry.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __REBUILD_ENTRY_H__
-#define __REBUILD_ENTRY_H__
+#ifndef __LIBSQSTORE_REBUILD_ENTRY_H__
+#define __LIBSQSTORE_REBUILD_ENTRY_H__
struct _rebuild_entry {
=======================================
--- /branches/LUSCA_HEAD/libsqstore/ufs_utils.h Tue Jun 16 05:29:07 2009
+++ /branches/LUSCA_HEAD/libsqstore/ufs_utils.h Sat Apr 10 16:20:36 2010
@@ -1,5 +1,5 @@
-#ifndef __LUSCA_UFS_UTILS_H__
-#define __LUSCA_UFS_UTILS_H__
+#ifndef __LIBSQSTORE_UFS_UTILS_H__
+#define __LIBSQSTORE_UFS_UTILS_H__
struct _ufsSwapLogEntryList {
storeSwapLogData *buf;
--
You received this message because you are subscribed to the Google Groups
"lusca-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/lusca-commit?hl=en.