Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/include/rump regen



details:   https://anonhg.NetBSD.org/src/rev/aab852c69845
branches:  trunk
changeset: 789330:aab852c69845
user:      pooka <pooka%NetBSD.org@localhost>
date:      Thu Aug 15 20:45:38 2013 +0000

description:
regen

diffstat:

 sys/rump/include/rump/rumpdefs.h |  19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

diffs (45 lines):

diff -r 4ad883fbff5b -r aab852c69845 sys/rump/include/rump/rumpdefs.h
--- a/sys/rump/include/rump/rumpdefs.h  Thu Aug 15 20:45:12 2013 +0000
+++ b/sys/rump/include/rump/rumpdefs.h  Thu Aug 15 20:45:38 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rumpdefs.h,v 1.22 2013/06/25 21:07:22 stacktic Exp $   */
+/*     $NetBSD: rumpdefs.h,v 1.23 2013/08/15 20:45:38 pooka Exp $      */
 
 /*
  *     AUTOMATICALLY GENERATED.  DO NOT EDIT.
@@ -295,7 +295,7 @@
 #define RUMP_MSG_IOVUSRSPACE   0x4000000       
 #define RUMP_MSG_LENUSRSPACE   0x8000000       
 
-/*     NetBSD: in.h,v 1.88 2013/04/27 21:35:24 joerg Exp       */
+/*     NetBSD: in.h,v 1.87 2012/06/22 14:54:35 christos Exp    */
 #define        RUMP_IP_OPTIONS         1    
 #define        RUMP_IP_HDRINCL         2    
 #define        RUMP_IP_TOS                     3    
@@ -480,7 +480,7 @@
        size_t ml_propslen;
 };
 
-/*     NetBSD: ufsmount.h,v 1.40 2013/06/16 13:33:30 hannken Exp       */
+/*     NetBSD: ufsmount.h,v 1.39 2012/10/19 17:09:08 drochner Exp      */
 struct rump_ufs_args {
        char    *fspec;                 /* block special device to mount */
 };
@@ -490,4 +490,17 @@
        char    *fspec;         /* blocks special holding the fs to mount */
 };
 
+/*     NetBSD: dirent.h,v 1.28 2011/09/27 01:40:32 christos Exp        */
+struct rump_dirent {
+       ino_t d_fileno;                 /* file number of entry */
+       uint16_t d_reclen;              /* length of this record */
+       uint16_t d_namlen;              /* length of string in d_name */
+       uint8_t  d_type;                /* file type, see below */
+#if defined(_NETBSD_SOURCE)
+       char    d_name[MAXNAMLEN + 1];  /* name must be no longer than this */
+#else
+       char    d_name[511 + 1];        /* name must be no longer than this */
+#endif
+};
+
 #endif /* _RUMP_RUMPDEFS_H_ */



Home | Main Index | Thread Index | Old Index