]> mj.ucw.cz Git - libucw.git/commitdiff
Logging: Cleaned up documentation.
authorMartin Mares <mj@ucw.cz>
Wed, 18 Feb 2009 16:58:52 +0000 (17:58 +0100)
committerMartin Mares <mj@ucw.cz>
Wed, 18 Feb 2009 16:58:52 +0000 (17:58 +0100)
ucw/lib.h
ucw/log.h

index a62281327f4214a294ef506043b227f4af1620ac..0ec021925e0a26b4ae8d8a3a9fafcf77b5868deb 100644 (file)
--- a/ucw/lib.h
+++ b/ucw/lib.h
 #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))
index acab80591003414e25945c2c6319f1cbc78c56cf..e08609b55332be8aa0ec3d5c181a7bfaf0b6169f 100644 (file)
--- 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);