Author: sthibault
Date: 2010-08-22 14:04:00 +0000 (Sun, 22 Aug 2010)
New Revision: 4384

Added:
   glibc-package/trunk/debian/patches/hurd-i386/cvs-getnprocs.diff
Removed:
   glibc-package/trunk/debian/patches/hurd-i386/submitted-getnprocs.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
mv patches/hurd-i386/{submitted,cvs}-getnprocs.diff.


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog        2010-08-22 14:01:07 UTC (rev 
4383)
+++ glibc-package/trunk/debian/changelog        2010-08-22 14:04:00 UTC (rev 
4384)
@@ -7,6 +7,7 @@
   * patches/hurd-i386/local-locarchive.diff: Extend to permit generating 
several
     locales.
   * mv patches/hurd-i386/{submitted,cvs}-ttyname.diff.
+  * mv patches/hurd-i386/{submitted,cvs}-getnprocs.diff.
 
   [ Petr Salinger ]
   * kfreebsd/local-sysdeps.diff: update to revision 3156 (from glibc-bsd).

Copied: glibc-package/trunk/debian/patches/hurd-i386/cvs-getnprocs.diff (from 
rev 4381, glibc-package/trunk/debian/patches/hurd-i386/submitted-getnprocs.diff)
===================================================================
--- glibc-package/trunk/debian/patches/hurd-i386/cvs-getnprocs.diff             
                (rev 0)
+++ glibc-package/trunk/debian/patches/hurd-i386/cvs-getnprocs.diff     
2010-08-22 14:04:00 UTC (rev 4384)
@@ -0,0 +1,44 @@
+http://sources.redhat.com/ml/libc-alpha/2010-01/msg00046.html
+
+2010-01-26  Samuel Thibault  <samuel.thiba...@ens-lyon.org>
+
+       * sysdeps/mach/getsysstats.c (get_nprocs_conf, get_nprocs,
+       get_phys_pages, get_avphys_pages): Add weak aliases.
+
+---
+ getsysstats.c |    4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/sysdeps/mach/getsysstats.c b/sysdeps/mach/getsysstats.c
+index d2bebb6..a7e0804 100644
+--- a/sysdeps/mach/getsysstats.c
++++ b/sysdeps/mach/getsysstats.c
+@@ -40,6 +40,7 @@ __get_nprocs_conf ()
+ 
+   return hbi.max_cpus;
+ }
++weak_alias (__get_nprocs_conf, get_nprocs_conf)
+ 
+ /* Return the number of processors currently available on the system. */
+ int
+@@ -58,6 +59,7 @@ __get_nprocs ()
+ 
+   return hbi.avail_cpus;
+ }
++weak_alias (__get_nprocs, get_nprocs)
+ 
+ /* Return the number of physical pages on the system. */
+ long int
+@@ -76,6 +78,7 @@ __get_phys_pages ()
+ 
+   return hbi.memory_size / __vm_page_size;
+ }
++weak_alias (__get_phys_pages, get_phys_pages)
+ 
+ /* Return the number of available physical pages */
+ long int
+@@ -100,3 +103,4 @@ __get_avphys_pages ()
+ 
+   return vs.free_count;
+ }
++weak_alias (__get_avphys_pages, get_avphys_pages)

Deleted: glibc-package/trunk/debian/patches/hurd-i386/submitted-getnprocs.diff
===================================================================
--- glibc-package/trunk/debian/patches/hurd-i386/submitted-getnprocs.diff       
2010-08-22 14:01:07 UTC (rev 4383)
+++ glibc-package/trunk/debian/patches/hurd-i386/submitted-getnprocs.diff       
2010-08-22 14:04:00 UTC (rev 4384)
@@ -1,44 +0,0 @@
-http://sources.redhat.com/ml/libc-alpha/2010-01/msg00046.html
-
-2010-01-26  Samuel Thibault  <samuel.thiba...@ens-lyon.org>
-
-       * sysdeps/mach/getsysstats.c (get_nprocs_conf, get_nprocs,
-       get_phys_pages, get_avphys_pages): Add weak aliases.
-
----
- getsysstats.c |    4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/sysdeps/mach/getsysstats.c b/sysdeps/mach/getsysstats.c
-index d2bebb6..a7e0804 100644
---- a/sysdeps/mach/getsysstats.c
-+++ b/sysdeps/mach/getsysstats.c
-@@ -40,6 +40,7 @@ __get_nprocs_conf ()
- 
-   return hbi.max_cpus;
- }
-+weak_alias (__get_nprocs_conf, get_nprocs_conf)
- 
- /* Return the number of processors currently available on the system. */
- int
-@@ -58,6 +59,7 @@ __get_nprocs ()
- 
-   return hbi.avail_cpus;
- }
-+weak_alias (__get_nprocs, get_nprocs)
- 
- /* Return the number of physical pages on the system. */
- long int
-@@ -76,6 +78,7 @@ __get_phys_pages ()
- 
-   return hbi.memory_size / __vm_page_size;
- }
-+weak_alias (__get_phys_pages, get_phys_pages)
- 
- /* Return the number of available physical pages */
- long int
-@@ -100,3 +103,4 @@ __get_avphys_pages ()
- 
-   return vs.free_count;
- }
-+weak_alias (__get_avphys_pages, get_avphys_pages)

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series   2010-08-22 14:01:07 UTC (rev 
4383)
+++ glibc-package/trunk/debian/patches/series   2010-08-22 14:04:00 UTC (rev 
4384)
@@ -125,7 +125,7 @@
 hurd-i386/submitted-regex_internal.diff
 hurd-i386/cvs-linkat.diff
 hurd-i386/cvs-ttyname.diff
-hurd-i386/submitted-getnprocs.diff
+hurd-i386/cvs-getnprocs.diff
 hurd-i386/local-mkdir_root.diff
 hurd-i386/cvs-select.diff
 


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1onb9w-0004lu...@alioth.debian.org

Reply via email to