All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] CPU_SET.3: CPU_COUNT() and CPU_COUNT_S() return int, not void
@ 2010-02-11 11:05 Vlastimil Babka
  0 siblings, 0 replies; only message in thread
From: Vlastimil Babka @ 2010-02-11 11:05 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Hi, found a minor error in man-pages 3.23, git is the same (2008-11-14).
The functions return a number of CPU's, so void is obviously wrong, in 
my glibc-2.11 it's declared as int (__sched_cpucount() in 
/usr/include/bits/sched.h).

Patch below. Regards,
Vlastimil Babka

diff --git a/man3/CPU_SET.3 b/man3/CPU_SET.3
index cf186c8..a03f23b 100644
--- a/man3/CPU_SET.3
+++ b/man3/CPU_SET.3
@@ -41,7 +41,7 @@ macros for manipulating CPU sets
  .BI "void CPU_CLR(int " cpu ", cpu_set_t *" set );
  .BI "int  CPU_ISSET(int " cpu ", cpu_set_t *" set );
  .sp
-.BI "void CPU_COUNT(cpu_set_t *" set );
+.BI "int  CPU_COUNT(cpu_set_t *" set );
  .sp
  .BI "void CPU_AND(cpu_set_t *" destset ,
  .BI "             cpu_set_t *" srcset1 ", cpu_set_t *" srcset2 );
@@ -62,7 +62,7 @@ macros for manipulating CPU sets
  .BI "void CPU_CLR_S(int " cpu ", size_t " setsize ", cpu_set_t *" set );
  .BI "int  CPU_ISSET_S(int " cpu ", size_t " setsize ", cpu_set_t *" set );
  .sp
-.BI "void CPU_COUNT_S(size_t " setsize ", cpu_set_t *" set );
+.BI "int  CPU_COUNT_S(size_t " setsize ", cpu_set_t *" set );
  .sp
  .BI "void CPU_AND_S(size_t " setsize ", cpu_set_t *" destset ,
  .BI "             cpu_set_t *" srcset1 ", cpu_set_t *" srcset2 );
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-02-11 11:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-11 11:05 [patch] CPU_SET.3: CPU_COUNT() and CPU_COUNT_S() return int, not void Vlastimil Babka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.