svn commit: trunk/busybox: coreutils ipsvd libbb networking runit

vda at busybox.net vda at busybox.net
Sun Mar 2 12:53:16 UTC 2008


Author: vda
Date: 2008-03-02 04:53:15 -0800 (Sun, 02 Mar 2008)
New Revision: 21149

Log:
actually add bb_qsort.c
*: s/Denis/Denys/



Added:
   trunk/busybox/libbb/bb_qsort.c

Modified:
   trunk/busybox/coreutils/od_bloaty.c
   trunk/busybox/ipsvd/ipsvd_perhost.c
   trunk/busybox/ipsvd/ipsvd_perhost.h
   trunk/busybox/ipsvd/tcpudp.c
   trunk/busybox/libbb/bb_basename.c
   trunk/busybox/libbb/makedev.c
   trunk/busybox/libbb/printable.c
   trunk/busybox/libbb/signals.c
   trunk/busybox/libbb/time.c
   trunk/busybox/libbb/udp_io.c
   trunk/busybox/libbb/xfuncs.c
   trunk/busybox/networking/isrv.c
   trunk/busybox/networking/isrv.h
   trunk/busybox/networking/isrv_identd.c
   trunk/busybox/runit/chpst.c
   trunk/busybox/runit/runit_lib.c
   trunk/busybox/runit/runsv.c
   trunk/busybox/runit/runsvdir.c
   trunk/busybox/runit/sv.c
   trunk/busybox/runit/svlogd.c


Changeset:
Modified: trunk/busybox/coreutils/od_bloaty.c
===================================================================
--- trunk/busybox/coreutils/od_bloaty.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/coreutils/od_bloaty.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -17,7 +17,7 @@
 
 /* Written by Jim Meyering.  */
 
-/* Busyboxed by Denis Vlasenko
+/* Busyboxed by Denys Vlasenko
 
 Based on od.c from coreutils-5.2.1
 Top bloat sources:

Modified: trunk/busybox/ipsvd/ipsvd_perhost.c
===================================================================
--- trunk/busybox/ipsvd/ipsvd_perhost.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/ipsvd/ipsvd_perhost.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
  * which are released into public domain by the author.
  * Homepage: http://smarden.sunsite.dk/ipsvd/
  *
- * Copyright (C) 2007 Denis Vlasenko.
+ * Copyright (C) 2007 Denys Vlasenko.
  *
  * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/ipsvd/ipsvd_perhost.h
===================================================================
--- trunk/busybox/ipsvd/ipsvd_perhost.h	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/ipsvd/ipsvd_perhost.h	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
  * which are released into public domain by the author.
  * Homepage: http://smarden.sunsite.dk/ipsvd/
  *
- * Copyright (C) 2007 Denis Vlasenko.
+ * Copyright (C) 2007 Denys Vlasenko.
  *
  * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/ipsvd/tcpudp.c
===================================================================
--- trunk/busybox/ipsvd/tcpudp.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/ipsvd/tcpudp.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
  * which are released into public domain by the author.
  * Homepage: http://smarden.sunsite.dk/ipsvd/
  *
- * Copyright (C) 2007 Denis Vlasenko.
+ * Copyright (C) 2007 Denys Vlasenko.
  *
  * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/libbb/bb_basename.c
===================================================================
--- trunk/busybox/libbb/bb_basename.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/libbb/bb_basename.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Added: trunk/busybox/libbb/bb_qsort.c
===================================================================
--- trunk/busybox/libbb/bb_qsort.c	                        (rev 0)
+++ trunk/busybox/libbb/bb_qsort.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -0,0 +1,20 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * Wrapper for common string vector sorting operation
+ *
+ * Copyright (c) 2008 Denys Vlasenko
+ *
+ * Licensed under GPLv2, see file LICENSE in this tarball for details.
+ */
+
+#include "libbb.h"
+
+int bb_pstrcmp(const void *a, const void *b)
+{
+	return strcmp(*(char**)a, *(char**)b);
+}
+
+void qsort_string_vector(char **sv, unsigned count)
+{
+	qsort(sv, count, sizeof(char*), bb_pstrcmp);
+}

Modified: trunk/busybox/libbb/makedev.c
===================================================================
--- trunk/busybox/libbb/makedev.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/libbb/makedev.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -1,7 +1,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2006 Denis Vlasenko
+ * Copyright (C) 2006 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/libbb/printable.c
===================================================================
--- trunk/busybox/libbb/printable.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/libbb/printable.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/libbb/signals.c
===================================================================
--- trunk/busybox/libbb/signals.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/libbb/signals.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  * Copyright (C) 2006 Rob Landley
- * Copyright (C) 2006 Denis Vlasenko
+ * Copyright (C) 2006 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/libbb/time.c
===================================================================
--- trunk/busybox/libbb/time.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/libbb/time.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/libbb/udp_io.c
===================================================================
--- trunk/busybox/libbb/udp_io.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/libbb/udp_io.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/libbb/xfuncs.c
===================================================================
--- trunk/busybox/libbb/xfuncs.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/libbb/xfuncs.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen at codepoet.org>
  * Copyright (C) 2006 Rob Landley
- * Copyright (C) 2006 Denis Vlasenko
+ * Copyright (C) 2006 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/networking/isrv.c
===================================================================
--- trunk/busybox/networking/isrv.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/networking/isrv.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -3,7 +3,7 @@
  * Generic non-forking server infrastructure.
  * Intended to make writing telnetd-type servers easier.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/networking/isrv.h
===================================================================
--- trunk/busybox/networking/isrv.h	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/networking/isrv.h	2008-03-02 12:53:15 UTC (rev 21149)
@@ -3,7 +3,7 @@
  * Generic non-forking server infrastructure.
  * Intended to make writing telnetd-type servers easier.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/networking/isrv_identd.c
===================================================================
--- trunk/busybox/networking/isrv_identd.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/networking/isrv_identd.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -2,7 +2,7 @@
 /*
  * Fake identd server.
  *
- * Copyright (C) 2007 Denis Vlasenko
+ * Copyright (C) 2007 Denys Vlasenko
  *
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */

Modified: trunk/busybox/runit/chpst.c
===================================================================
--- trunk/busybox/runit/chpst.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/runit/chpst.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -25,7 +25,7 @@
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux at googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux at googlemail.com> */
 /* Dependencies on runit_lib.c removed */
 
 #include "libbb.h"

Modified: trunk/busybox/runit/runit_lib.c
===================================================================
--- trunk/busybox/runit/runit_lib.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/runit/runit_lib.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -25,7 +25,7 @@
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux at googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux at googlemail.com> */
 /* Collected into one file from runit's many tiny files */
 /* TODO: review, eliminate unneeded stuff, move good stuff to libbb */
 

Modified: trunk/busybox/runit/runsv.c
===================================================================
--- trunk/busybox/runit/runsv.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/runit/runsv.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -25,7 +25,7 @@
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux at googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux at googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>

Modified: trunk/busybox/runit/runsvdir.c
===================================================================
--- trunk/busybox/runit/runsvdir.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/runit/runsvdir.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -25,7 +25,7 @@
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux at googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux at googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>

Modified: trunk/busybox/runit/sv.c
===================================================================
--- trunk/busybox/runit/sv.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/runit/sv.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -150,7 +150,7 @@
     is 99. sv exits 100 on error.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux at googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux at googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>

Modified: trunk/busybox/runit/svlogd.c
===================================================================
--- trunk/busybox/runit/svlogd.c	2008-03-02 12:51:26 UTC (rev 21148)
+++ trunk/busybox/runit/svlogd.c	2008-03-02 12:53:15 UTC (rev 21149)
@@ -25,7 +25,7 @@
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-/* Busyboxed by Denis Vlasenko <vda.linux at googlemail.com> */
+/* Busyboxed by Denys Vlasenko <vda.linux at googlemail.com> */
 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
 
 #include <sys/poll.h>




More information about the busybox-cvs mailing list