public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] Deleted branch fw/unwind-link
@ 2020-02-13 10:45 Florian Weimer
  0 siblings, 0 replies; 3+ messages in thread
From: Florian Weimer @ 2020-02-13 10:45 UTC (permalink / raw)
  To: glibc-cvs

The branch 'fw/unwind-link' was deleted.
It previously pointed to:

 3e39238... s390: Implement backtrace on top of <unwind-link.h>

Diff:

!!! WARNING: THE FOLLOWING COMMITS ARE NO LONGER ACCESSIBLE (LOST):
-------------------------------------------------------------------

  3e39238... s390: Implement backtrace on top of <unwind-link.h>
  126a8bd... sparc: Implement backtrace on top <unwind-link.h>
  8a1dc63... m68k: Implement backtrace on top of <unwind-link.h>
  d7ccc13... i386: Implement backtrace on top of <unwind-link.h>
  da60eb7... arm: Implement backtrace on top of <unwind-link.h>
  cb22a71... backtrace: Implement on top of <unwind-link.h>
  01b41a9... Implement <unwind-link.h> for dynamically loading the libgc
  c7d1a41... s390: Remove backchain-based fallback from backtrace
  0cc0338... debug: Add missing locale dependencies of fortify tests

commit 3e3923869003596a2b84c394bf8cd1f428c58c72
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 17:29:12 2020 +0100

    s390: Implement backtrace on top of <unwind-link.h>

commit 126a8bdf664b48e589350be38d6cc8c517607912
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 16:07:03 2020 +0100

    sparc: Implement backtrace on top <unwind-link.h>

commit 8a1dc6368693fcd05685d1985afe405ebfe1c8d0
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 16:01:29 2020 +0100

    m68k: Implement backtrace on top of <unwind-link.h>

commit d7ccc137c369623425f04f0f56062819f66265df
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 15:57:27 2020 +0100

    i386: Implement backtrace on top of <unwind-link.h>

commit da60eb7e0bf29b567ac672838501c32b07ed4055
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 17:32:05 2020 +0100

    arm: Implement backtrace on top of <unwind-link.h>

commit cb22a711d887e87f3075b95478326717329b6012
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 14:58:41 2020 +0100

    backtrace: Implement on top of <unwind-link.h>
    
    This reimplements the generic version of backtrace.

commit 01b41a99850200248e385e7fd9abee899ed75777
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 14:23:16 2020 +0100

    Implement <unwind-link.h> for dynamically loading the libgcc_s unwinder
    
    This will be used to consolidate the libgcc_s access for backtrace
    and pthread_cancel.
    
    Unlike the backtrace implementations, it provides some hardening
    based on pointer mangling.

commit c7d1a41c54e746fb256aec82f3c09b977b4379d1
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 16:21:32 2020 +0100

    s390: Remove backchain-based fallback from backtrace
    
    This backtrace variant is used when _Unwind_Backtrace is not found in
    libgcc_s.  It still depends on _Unwind_GetIP from libgcc_s, so it does
    not work if loading libgcc_s fails.  Therefore, as long as libgcc_s
    provides a definition of _Unwind_Backtrace, the fallback is not useful.
    
    After this change, the implementation is the same on s390 and s390x
    and can be shared.

commit 0cc0338d566726eb8fd87721176f6ec640f372e0
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 14:37:10 2020 +0100

    debug: Add missing locale dependencies of fortify tests
    
    The missing dependencies result in failures like this if make check
    is invoked with sufficient parallelism for the debug subdirectory:
    
    FAIL: debug/tst-chk2
    FAIL: debug/tst-chk3
    FAIL: debug/tst-chk4
    FAIL: debug/tst-chk5
    FAIL: debug/tst-chk6
    FAIL: debug/tst-lfschk1
    FAIL: debug/tst-lfschk2
    FAIL: debug/tst-lfschk3
    FAIL: debug/tst-lfschk4
    FAIL: debug/tst-lfschk5
    FAIL: debug/tst-lfschk6


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [glibc] Deleted branch fw/unwind-link
@ 2020-02-13 16:35 Florian Weimer
  0 siblings, 0 replies; 3+ messages in thread
From: Florian Weimer @ 2020-02-13 16:35 UTC (permalink / raw)
  To: glibc-cvs

The branch 'fw/unwind-link' was deleted.
It previously pointed to:

 b8bd0d1... nptl: Use <unwind-link.h> for accessing the libgcc_s unwind

Diff:

!!! WARNING: THE FOLLOWING COMMITS ARE NO LONGER ACCESSIBLE (LOST):
-------------------------------------------------------------------

  b8bd0d1... nptl: Use <unwind-link.h> for accessing the libgcc_s unwind
  e488eed... Implement _Unwind_Resume in libc on top of <unwind-link.h>
  f1659fa... Move sysdeps/gnu/unwind-resume.c to sysdeps/generic/unwind-
  3cd557d... __frame_state_for: Use <unwind-link.h> for unwinder access
  713ebe2... s390: Implement backtrace on top of <unwind-link.h>
  1f5c45e... sparc: Implement backtrace on top <unwind-link.h>
  089a9d4... m68k: Implement backtrace on top of <unwind-link.h>
  ca21e4d... i386: Implement backtrace on top of <unwind-link.h>
  91f10d5... arm: Implement backtrace on top of <unwind-link.h>
  d3791ea... backtrace: Implement on top of <unwind-link.h>
  030c3e2... Implement <unwind-link.h> for dynamically loading the libgc

commit b8bd0d14379ab5d78824dce1854beaea82326a70
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Feb 13 12:22:06 2020 +0100

    nptl: Use <unwind-link.h> for accessing the libgcc_s unwinder

commit e488eedbe42824907ed16a78f6075fa483e8890a
Author: Florian Weimer <fweimer@redhat.com>
Date:   Wed Feb 12 18:09:13 2020 +0100

    Implement _Unwind_Resume in libc on top of <unwind-link.h>
    
    Temporarily move the arm _Unwind_Resume implementation to the file
    used by libpthread.  It will be ported next.

commit f1659fa94f6360b21a1e4e1a8dc24a35652e2ebb
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Feb 13 11:27:06 2020 +0100

    Move sysdeps/gnu/unwind-resume.c to sysdeps/generic/unwind-resume.c
    
    This change allows architecture-specific sysdeps directories to override
    it.

commit 3cd557dd662c5ed0ead06fdbe54d5e0f5b799eee
Author: Florian Weimer <fweimer@redhat.com>
Date:   Wed Feb 12 17:31:06 2020 +0100

    __frame_state_for: Use <unwind-link.h> for unwinder access

commit 713ebe2d9ffaa560aae9a82ed9b2c6bda626d9e1
Author: Florian Weimer <fweimer@redhat.com>
Date:   Wed Feb 12 16:19:49 2020 +0100

    s390: Implement backtrace on top of <unwind-link.h>

commit 1f5c45ee2350ab841dea8afc3b3b3376dd4c8f3c
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 22:58:05 2020 +0100

    sparc: Implement backtrace on top <unwind-link.h>

commit 089a9d42a3f941afb2129906bf6b359346e354e4
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 16:01:29 2020 +0100

    m68k: Implement backtrace on top of <unwind-link.h>

commit ca21e4d0ae9703cfcd5e40a9b0712a8da1588e85
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 15:57:27 2020 +0100

    i386: Implement backtrace on top of <unwind-link.h>

commit 91f10d5d71865f2a40930c9471f5a287777d19f8
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 17:32:05 2020 +0100

    arm: Implement backtrace on top of <unwind-link.h>

commit d3791ea298113a835b913bbf385f084eb09e4b2e
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 14:58:41 2020 +0100

    backtrace: Implement on top of <unwind-link.h>
    
    This reimplements the generic version of backtrace.

commit 030c3e22e6b32b890d78c5b3ee7c3023a3013c94
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Feb 13 17:05:50 2020 +0100

    Implement <unwind-link.h> for dynamically loading the libgcc_s unwinder
    
    This will be used to consolidate the libgcc_s access for backtrace
    and pthread_cancel.
    
    Unlike the backtrace implementations, it provides some hardening
    based on pointer mangling.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [glibc] Deleted branch fw/unwind-link
@ 2020-02-13 16:07 Florian Weimer
  0 siblings, 0 replies; 3+ messages in thread
From: Florian Weimer @ 2020-02-13 16:07 UTC (permalink / raw)
  To: glibc-cvs

The branch 'fw/unwind-link' was deleted.
It previously pointed to:

 d1e3c170... nptl: Use <unwind-link.h> for accessing the libgcc_s unwind

Diff:

!!! WARNING: THE FOLLOWING COMMITS ARE NO LONGER ACCESSIBLE (LOST):
-------------------------------------------------------------------

  d1e3c17... nptl: Use <unwind-link.h> for accessing the libgcc_s unwind
  67398a5... Implement _Unwind_Resume in libc on top of <unwind-link.h>
  47c3251... Move sysdeps/gnu/unwind-resume.c to sysdeps/generic/unwind-
  cc2ab2b... __frame_state_for: Use <unwind-link.h> for unwinder access
  467e6f1... s390: Implement backtrace on top of <unwind-link.h>
  bc5d511... sparc: Implement backtrace on top <unwind-link.h>
  8018884... m68k: Implement backtrace on top of <unwind-link.h>
  2e8f911... i386: Implement backtrace on top of <unwind-link.h>
  e5b2501... arm: Implement backtrace on top of <unwind-link.h>
  eee1f62... backtrace: Implement on top of <unwind-link.h>
  9105752... Implement <unwind-link.h> for dynamically loading the libgc

commit d1e3c170371fecb3e0c5615307de2a8f1ea52161
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Feb 13 12:22:06 2020 +0100

    nptl: Use <unwind-link.h> for accessing the libgcc_s unwinder

commit 67398a546df6d1d00f2f725350c6c58e8b719174
Author: Florian Weimer <fweimer@redhat.com>
Date:   Wed Feb 12 18:09:13 2020 +0100

    Implement _Unwind_Resume in libc on top of <unwind-link.h>
    
    Temporarily move the arm _Unwind_Resume implementation to the file
    used by libpthread.  It will be ported next.

commit 47c3251cf5305fa65e96e7be990d9ac157b53b34
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Feb 13 11:27:06 2020 +0100

    Move sysdeps/gnu/unwind-resume.c to sysdeps/generic/unwind-resume.c
    
    This change allows architecture-specific sysdeps directories to override
    it.

commit cc2ab2b164ee6615bb82660f3ff9369bacce783f
Author: Florian Weimer <fweimer@redhat.com>
Date:   Wed Feb 12 17:31:06 2020 +0100

    __frame_state_for: Use <unwind-link.h> for unwinder access

commit 467e6f1c95439e643b44ed91dd21516571b8f992
Author: Florian Weimer <fweimer@redhat.com>
Date:   Wed Feb 12 16:19:49 2020 +0100

    s390: Implement backtrace on top of <unwind-link.h>

commit bc5d5115151bc08e6d49fe03f9cf62c82b0860ea
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 22:58:05 2020 +0100

    sparc: Implement backtrace on top <unwind-link.h>

commit 80188847b5e4cb93bf70aa61fa15946c50c4b7aa
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 16:01:29 2020 +0100

    m68k: Implement backtrace on top of <unwind-link.h>

commit 2e8f9112e0d4787d026f7d684748aa7b230f18ac
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 15:57:27 2020 +0100

    i386: Implement backtrace on top of <unwind-link.h>

commit e5b2501341cb950ce8eec86623ed2836a30700ae
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 17:32:05 2020 +0100

    arm: Implement backtrace on top of <unwind-link.h>

commit eee1f62cddb236786ebef8602f734332451fc986
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Feb 10 14:58:41 2020 +0100

    backtrace: Implement on top of <unwind-link.h>
    
    This reimplements the generic version of backtrace.

commit 9105752b516e96a3dbcc7f871f4dc48ac304aa26
Author: Florian Weimer <fweimer@redhat.com>
Date:   Tue Feb 11 10:14:58 2020 +0100

    Implement <unwind-link.h> for dynamically loading the libgcc_s unwinder
    
    This will be used to consolidate the libgcc_s access for backtrace
    and pthread_cancel.
    
    Unlike the backtrace implementations, it provides some hardening
    based on pointer mangling.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-02-13 16:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-13 10:45 [glibc] Deleted branch fw/unwind-link Florian Weimer
2020-02-13 16:07 Florian Weimer
2020-02-13 16:35 Florian Weimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).