[Glibc-bsd-commits] r1410 - in trunk/libfreebsd: . debian include/freebsd

Robert Millan rmh at costa.debian.org
Thu Mar 30 14:00:46 UTC 2006


Author: rmh
Date: 2006-03-30 14:00:46 +0000 (Thu, 30 Mar 2006)
New Revision: 1410

Added:
   trunk/libfreebsd/include/freebsd/stdlib.h
Removed:
   trunk/libfreebsd/include/freebsd/sbuf.h
Modified:
   trunk/libfreebsd/Makefile
   trunk/libfreebsd/debian/changelog
   trunk/libfreebsd/debian/control
Log:
  * Add freebsd/stdlib.h:
    - Includes bsd/stdlib.h from libbsd.
    - Declares devname/devname_r.

Modified: trunk/libfreebsd/Makefile
===================================================================
--- trunk/libfreebsd/Makefile	2006-03-30 13:53:34 UTC (rev 1409)
+++ trunk/libfreebsd/Makefile	2006-03-30 14:00:46 UTC (rev 1410)
@@ -6,7 +6,7 @@
 
 LIB_SRCS = nlist.c getbootfile.c devname.c sysctlnametomib.c sysctlbyname.c
 
-LIB_FREEBSDINCLUDES = include/freebsd/paths.h
+LIB_FREEBSDINCLUDES = include/freebsd/paths.h include/freebsd/stdlib.h
 LIB_INCLUDES = include/nlist.h
 
 LIB_MANS = man/nlist.3 man/getbootfile.3

Modified: trunk/libfreebsd/debian/changelog
===================================================================
--- trunk/libfreebsd/debian/changelog	2006-03-30 13:53:34 UTC (rev 1409)
+++ trunk/libfreebsd/debian/changelog	2006-03-30 14:00:46 UTC (rev 1410)
@@ -1,3 +1,11 @@
+libfreebsd (0.0-4) unreleased; urgency=low
+
+  * Add freebsd/stdlib.h:
+    - Includes bsd/stdlib.h from libbsd.
+    - Declares devname/devname_r.
+
+ -- Robert Millan <rmh at aybabtu.com>  Thu, 30 Mar 2006 16:00:10 +0200
+
 libfreebsd (0.0-3) unreleased; urgency=low
 
   * Versions: Fix nasty typo (s/getboofile/getbootfile/g).

Modified: trunk/libfreebsd/debian/control
===================================================================
--- trunk/libfreebsd/debian/control	2006-03-30 13:53:34 UTC (rev 1409)
+++ trunk/libfreebsd/debian/control	2006-03-30 14:00:46 UTC (rev 1410)
@@ -21,7 +21,7 @@
 Package: libfreebsd-dev
 Section: libdevel
 Architecture: kfreebsd-i386 kfreebsd-amd64
-Depends: libfreebsd0 (= ${Source-Version})
+Depends: libfreebsd0 (= ${Source-Version}), libbsd-dev
 Description: Development files for libfreebsd
  This package contains the header files and static library needed to
  compile applications that use libfreebsd.

Deleted: trunk/libfreebsd/include/freebsd/sbuf.h
===================================================================
--- trunk/libfreebsd/include/freebsd/sbuf.h	2006-03-30 13:53:34 UTC (rev 1409)
+++ trunk/libfreebsd/include/freebsd/sbuf.h	2006-03-30 14:00:46 UTC (rev 1410)
@@ -1,84 +0,0 @@
-/*-
- * Copyright (c) 2000 Poul-Henning Kamp and Dag-Erling Coïdan Smørgrav
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer
- *    in this position and unchanged.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- * 3. The name of the author may not be used to endorse or promote products
- *    derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- *      $FreeBSD: src/sys/sys/sbuf.h,v 1.14 2004/07/09 11:35:30 des Exp $
- */
-
-#ifndef LIBFREEBSD_SBUF_H
-#define	LIBFREEBSD_SBUF_H
-
-#include <sys/_types.h>
-
-/*
- * Structure definition
- */
-struct sbuf {
-	char		*s_buf;		/* storage buffer */
-	void		*s_unused;	/* binary compatibility. */
-	int		 s_size;	/* size of storage buffer */
-	int		 s_len;		/* current length of string */
-#define	SBUF_FIXEDLEN	0x00000000	/* fixed length buffer (default) */
-#define	SBUF_AUTOEXTEND	0x00000001	/* automatically extend buffer */
-#define	SBUF_USRFLAGMSK 0x0000ffff	/* mask of flags the user may specify */
-#define	SBUF_DYNAMIC	0x00010000	/* s_buf must be freed */
-#define	SBUF_FINISHED	0x00020000	/* set by sbuf_finish() */
-#define	SBUF_OVERFLOWED	0x00040000	/* sbuf overflowed */
-#define	SBUF_DYNSTRUCT	0x00080000	/* sbuf must be freed */
-	int		 s_flags;	/* flags */
-};
-
-__BEGIN_DECLS
-/*
- * API functions
- */
-struct sbuf	*sbuf_new(struct sbuf *, char *, int, int);
-void		 sbuf_clear(struct sbuf *);
-int		 sbuf_setpos(struct sbuf *, int);
-int		 sbuf_bcat(struct sbuf *, const void *, size_t);
-int		 sbuf_bcpy(struct sbuf *, const void *, size_t);
-int		 sbuf_cat(struct sbuf *, const char *);
-int		 sbuf_cpy(struct sbuf *, const char *);
-int		 sbuf_printf(struct sbuf *, const char *, ...);
-int		 sbuf_vprintf(struct sbuf *, const char *, __va_list);
-int		 sbuf_putc(struct sbuf *, int);
-int		 sbuf_trim(struct sbuf *);
-int		 sbuf_overflowed(struct sbuf *);
-void		 sbuf_finish(struct sbuf *);
-char		*sbuf_data(struct sbuf *);
-int		 sbuf_len(struct sbuf *);
-int		 sbuf_done(struct sbuf *);
-void		 sbuf_delete(struct sbuf *);
-
-#ifdef _KERNEL
-struct uio;
-struct sbuf	*sbuf_uionew(struct sbuf *, struct uio *, int *);
-int		 sbuf_bcopyin(struct sbuf *, const void *, size_t);
-int		 sbuf_copyin(struct sbuf *, const void *, size_t);
-#endif
-__END_DECLS
-
-#endif

Added: trunk/libfreebsd/include/freebsd/stdlib.h
===================================================================
--- trunk/libfreebsd/include/freebsd/stdlib.h	2006-03-30 13:53:34 UTC (rev 1409)
+++ trunk/libfreebsd/include/freebsd/stdlib.h	2006-03-30 14:00:46 UTC (rev 1410)
@@ -0,0 +1,10 @@
+#ifndef LIBFREEBSD_STDLIB_H
+#define LIBFREEBSD_STDLIB_H
+
+#include <sys/stat.h>		/* dev_t, mode_t */
+#include <bsd/stdlib.h>
+
+char *devname (dev_t dev, mode_t type);
+char *devname_r (dev_t dev, mode_t type, char *buf, int len);
+
+#endif




More information about the Glibc-bsd-commits mailing list