You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/08/16 16:16:07 UTC

svn commit: r1373853 - /subversion/trunk/subversion/libsvn_subr/sysinfo.c

Author: brane
Date: Thu Aug 16 14:16:07 2012
New Revision: 1373853

URL: http://svn.apache.org/viewvc?rev=1373853&view=rev
Log:
* subversion/libsvn_subr/sysinfo.c: Add docstrings.

Modified:
    subversion/trunk/subversion/libsvn_subr/sysinfo.c

Modified: subversion/trunk/subversion/libsvn_subr/sysinfo.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/sysinfo.c?rev=1373853&r1=1373852&r2=1373853&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/sysinfo.c (original)
+++ subversion/trunk/subversion/libsvn_subr/sysinfo.c Thu Aug 16 14:16:07 2012
@@ -172,6 +172,8 @@ canonical_host_from_uname(apr_pool_t *po
   return apr_psprintf(pool, "%s-%s-%s%s", machine, vendor, sysname, sysver);
 }
 
+/* Generate a release name from the uname(3) info, effectively
+   returning "`uname -s` `uname -r`". */
 static const char *
 release_name_from_uname(apr_pool_t *pool)
 {
@@ -666,6 +668,9 @@ release_name_from_version(const char *os
   return NULL;
 }
 
+/* Construct the release name from information stored in the Mac OS X
+   "SystemVersion.plist" file (or ServerVersion.plist, for Mac Os
+   Server. */
 static const char *
 macos_release_name(apr_pool_t *pool)
 {