From: Martin Mares Date: Wed, 18 Feb 2009 16:58:52 +0000 (+0100) Subject: Logging: Cleaned up documentation. X-Git-Tag: holmes-import~64 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=450b4d4b1cbc21b77039a46199012d6de75f85cf;p=libucw.git Logging: Cleaned up documentation. --- 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);