This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug nptl/17870] Build failure on x32


https://sourceware.org/bugzilla/show_bug.cgi?id=17870

--- Comment #3 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
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 "GNU C Library master sources".

The branch, master has been updated
       via  22971c35e2de34ec3e1b02e9bceebcba2ead7bfe (commit)
      from  2ec2d7032ff9220da1577c37d41ae85c0721ad66 (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 -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=22971c35e2de34ec3e1b02e9bceebcba2ead7bfe

commit 22971c35e2de34ec3e1b02e9bceebcba2ead7bfe
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Jan 23 14:48:40 2015 -0800

    Use uint64_t and (uint64_t) 1 for 64-bit int

    This patch replaces unsigned long int and 1UL with uint64_t and
    (uint64_t) 1 to support ILP32 targets like x32.

        [BZ #17870]
        * nptl/sem_post.c (__new_sem_post): Replace unsigned long int
        with uint64_t.
        * nptl/sem_waitcommon.c (__sem_wait_cleanup): Replace 1UL with
        (uint64_t) 1.
        (__new_sem_wait_slow): Replace unsigned long int with uint64_t.
        Replace 1UL with (uint64_t) 1.
        * sysdeps/nptl/internaltypes.h (new_sem): Replace unsigned long
        int with uint64_t.

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

Summary of changes:
 ChangeLog                    |   12 ++++++++++++
 NEWS                         |    2 +-
 nptl/sem_post.c              |    2 +-
 nptl/sem_waitcommon.c        |   10 +++++-----
 sysdeps/nptl/internaltypes.h |    2 +-
 5 files changed, 20 insertions(+), 8 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]