commit-hurd
[Top][All Lists]
Advanced

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

[SCM] Hurd branch, master, updated. 69056411a354300a17d1e92027435c988508


From: Samuel Thibault
Subject: [SCM] Hurd branch, master, updated. 69056411a354300a17d1e92027435c988508655d
Date: Sun, 25 Mar 2012 20:42:52 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Hurd".

The branch, master has been updated
       via  69056411a354300a17d1e92027435c988508655d (commit)
      from  f605070d37c741436b5f82745eae2a5c018e304d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 69056411a354300a17d1e92027435c988508655d
Author: Samuel Thibault <address@hidden>
Date:   Sun Mar 25 22:13:55 2012 +0200

    Fix extern inline use
    
    * ext2fs/Makefile (SRCS): Add xinl.c
    * libtreefs/Makefile (OTHERSRCS): Likewise.
    * term/Makefile (SRCS): Likewise.
    * ufs/Makefile (SRCS): Likewise.
    
    * hostmux/hostmux-xinl.c: Define HOSTMUX_DEFINE_EI instead of HOSTMUX_EI.
    * libdiskfs/extern-inline.c: Define DISKFS_DEFINE_EXTERN_INLINE instead of
    DISKFS_EXTERN_INLINE.
    * libftpconn/xinl.c: Define FTP_CONN_DEFINE_EI instead of FTP_CONN_EI.
    * libpipe/pipe-funcs.c: Define PIPE_DEFINE_EI instead of PIPE_EI.
    * libpipe/pq-funcs.c: Define PQ_DEFINE_EI instead of PQ_EI.
    * libshouldbeinlibc/idvec-funcs.c: Define IDVEC_DEFINE_EI instead of
    IDVEC_EI.
    * libshouldbeinlibc/maptime-funcs.c: Define MAPTIME_DEFINE_EI instead of
    MAPTIME_EI.
    * libshouldbeinlibc/ugids-xinl.c: Define UGIDS_DEFINE_EI instead of
    UGIDS_EI.
    * libstore/xinl.c: Define STORE_DEFINE_EI instead of STORE_EI.
    * libthreads/rwlock.c: Define RWLOCK_DEFINE_EI instead of RWLOCK_EI.
    * ext2fs/xinl.c: New file, define EXT2FS_DEFINE_EI and include "ext2fs.h"
    * libtreefs/xinl.c: New file, define TREEFS_DEFINE_EI and include "treefs.h"
    and "mig-decls.h".
    * term/xinl.c: New file, define TERM_DEFINE_EI and include "term.h".
    * ufs/xinl.c: New file, define UFS_DEFINE_EI and include "ufs.h"
    
    * ext2fs/ext2fs.h: Include <features.h>, define EXT2FS_EI to __extern_inline
    instead of "extern inline", define it to empty when EXT2FS_DEFINE_EI is
    defined. Always declare extern inline prototypes, and define extern inlines
    content only if __USE_EXTERN_INLINES or EXT2FS_DEFINE_EI is defined.
    * libdiskfs/diskfs.h: Likewise with DISKFS_EXTERN_INLINE and
    DISKFS_DEFINE_EXTERN_INLINE.
    * libftpconn/ftpconn.h: Likewise with FTP_CONN_EI and FTP_CONN_DEFINE_EI.
    * libftpconn/priv.h: Likewise.
    * libpipe/pipe.h: Likewise with PIPE_EI and PIPE_DEFINE_EI.
    * libpipe/pq.h: Likewise with PQ_EI and PQ_DEFINE_EI.
    * libshouldbeinlibc/idvec.h: Likewise with IDVEC_EI and IDVEC_DEFINE_EI.
    * libshouldbeinlibc/maptime.h: Likewise with MAPTIME_EI and
    MAPTIME_DEFINE_EI.
    * libshouldbeinlibc/ugids.h: Likewise with UGIDS_EI and UGIDS_DEFINE_EI.
    * libstore/store.h: Likewise with STORE_EI and STORE_DEFINE_EI.
    * libthreads/rwlock.h: Likewise with RWLOCK_EI and RWLOCK_DEFINE_EI.
    * term/term.h: Likewise with TERM_EI and TERM_DEFINE_EI.
    * ufs/ufs.h: Likewise with UFS_EI and UFS_DEFINE_EI.
    * libtreefs/treefs.h: Include <features.h>, define TREE_FS_EI to
    __extern_inline, or to empty when TREEFS_DEFINE_EI is defined. Use TREEFS_EI
    instead of "extern inline".
    * libtreefs/mig-decls.h: Use TREEFS_EI instead of "extern inline".

-----------------------------------------------------------------------

Summary of changes:
 ext2fs/Makefile                   |    2 +-
 ext2fs/ext2fs.h                   |   26 +++++++++++++++++-
 ext2fs/xinl.c                     |    2 +
 hostmux/hostmux-xinl.c            |    4 +--
 hostmux/hostmux.h                 |   11 +++++---
 libdiskfs/diskfs.h                |   15 +++++++++-
 libdiskfs/extern-inline.c         |    2 +-
 libftpconn/ftpconn.h              |   11 ++++++-
 libftpconn/priv.h                 |   12 +++++++-
 libftpconn/xinl.c                 |    2 +-
 libpipe/pipe-funcs.c              |    2 +-
 libpipe/pipe.h                    |   50 ++++++++++++++++++++++++++++++++++---
 libpipe/pq-funcs.c                |    2 +-
 libpipe/pq.h                      |   43 ++++++++++++++++++++++++++++++-
 libshouldbeinlibc/idvec-funcs.c   |    2 +-
 libshouldbeinlibc/idvec.h         |   23 +++++++++++++++-
 libshouldbeinlibc/maptime-funcs.c |    2 +-
 libshouldbeinlibc/maptime.h       |   17 +++++++++---
 libshouldbeinlibc/ugids-xinl.c    |    4 +--
 libshouldbeinlibc/ugids.h         |   19 ++++++++++++-
 libstore/store.h                  |   14 ++++++++--
 libstore/xinl.c                   |    2 +-
 libthreads/rwlock.c               |    2 +-
 libthreads/rwlock.h               |   23 ++++++++++++++--
 libtreefs/Makefile                |    4 +-
 libtreefs/mig-decls.h             |    9 +++++-
 libtreefs/treefs.h                |   37 +++++++++++++++++++++------
 libtreefs/xinl.c                  |    3 ++
 term/Makefile                     |    2 +-
 term/term.h                       |   47 ++++++++++++++++++++++++++--------
 term/xinl.c                       |    2 +
 ufs/Makefile                      |    2 +-
 ufs/ufs.h                         |   34 +++++++++++++++++++------
 ufs/xinl.c                        |    2 +
 34 files changed, 354 insertions(+), 80 deletions(-)
 create mode 100644 ext2fs/xinl.c
 create mode 100644 libtreefs/xinl.c
 create mode 100644 term/xinl.c
 create mode 100644 ufs/xinl.c


hooks/post-receive
-- 
Hurd



reply via email to

[Prev in Thread] Current Thread [Next in Thread]