From 450b4d4b1cbc21b77039a46199012d6de75f85cf Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 18 Feb 2009 17:58:52 +0100 Subject: [PATCH] Logging: Cleaned up documentation. --- ucw/lib.h | 8 ++------ ucw/log.h | 4 +--- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/ucw/lib.h b/ucw/lib.h index a6228132..0ec02192 100644 --- a/ucw/lib.h +++ b/ucw/lib.h @@ -23,14 +23,10 @@ #define OFFSETOF(s, i) ((unsigned int) (uintptr_t) PTR_TO(s, i)) /** Offset of item @i from the start of structure @s **/ #define SKIP_BACK(s, i, p) ((s *)((char *)p - OFFSETOF(s, i))) /** Given a pointer @p to item @i of structure @s, return a pointer to the start of the struct. **/ -/** - * Align an integer @s to the nearest higher multiple of @a (which should be a power of two) - **/ +/** Align an integer @s to the nearest higher multiple of @a (which should be a power of two) **/ #define ALIGN_TO(s, a) (((s)+a-1)&~(a-1)) -/** - * Align a pointer @p to the nearest higher multiple of @s. - **/ +/** Align a pointer @p to the nearest higher multiple of @s. **/ #define ALIGN_PTR(p, s) ((uintptr_t)(p) % (s) ? (typeof(p))((uintptr_t)(p) + (s) - (uintptr_t)(p) % (s)) : (p)) #define UNALIGNED_PART(ptr, type) (((uintptr_t) (ptr)) % sizeof(type)) diff --git a/ucw/log.h b/ucw/log.h index acab8059..e08609b5 100644 --- a/ucw/log.h +++ b/ucw/log.h @@ -152,9 +152,7 @@ void log_set_format(struct log_stream *ls, uns mask, uns data); **/ struct log_stream *log_stream_by_flags(uns flags); -/** - * Return a pointer to the default stream (stream #0). - **/ +/** Return a pointer to the default stream (stream #0). **/ static inline struct log_stream *log_default_stream(void) { return log_stream_by_flags(0); -- 2.39.2