You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2007/05/24 17:14:00 UTC

svn commit: r541318 - /harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysysinfo.c

Author: hindessm
Date: Thu May 24 08:14:00 2007
New Revision: 541318

URL: http://svn.apache.org/viewvc?view=rev&rev=541318
Log:
It looks like these comments might refer to the OS/X man page but in fact
they refer to the FreeBSD man page so I thought I should make it obvious.

Modified:
    harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysysinfo.c

Modified: harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysysinfo.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysysinfo.c?view=diff&rev=541318&r1=541317&r2=541318
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysysinfo.c (original)
+++ harmony/enhanced/classlib/trunk/modules/portlib/src/main/native/port/unix/hysysinfo.c Thu May 24 08:14:00 2007
@@ -653,7 +653,7 @@
   return sysconf (_SC_NPROCESSORS_ONLN);
 #else
 #if defined(MACOSX)
-  /* derived from examples in sysctl(3) man page */
+  /* derived from examples in the sysctl(3) man page from FreeBSD */
   int mib[2], ncpu;
   size_t len;
 
@@ -685,7 +685,7 @@
 {
 
 #if defined(FREEBSD) || defined(MACOSX)
-  /* derived from examples in sysctl(3) man page */
+  /* derived from examples in the sysctl(3) man page from FreeBSD */
   int mib[2], mem;
   size_t len;