This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 2677a4d4d10 Common ground work for vxworks7 ports updates new a31bf556194 Introduce vxworks specific crtstuff support new 70a98658940 Improve the thread support for VxWorks new 053980ee52b Update the libgcc support for VxWorks AE/653
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 13 + gcc/config/vx-common.h | 21 +- gcc/config/vxworks.h | 18 +- libgcc/ChangeLog | 52 ++++ libgcc/config.host | 28 ++ libgcc/config/gthr-vxworks-cond.c | 83 +++++ libgcc/config/gthr-vxworks-thread.c | 349 ++++++++++++++++++++++ libgcc/config/{vxlib-tls.c => gthr-vxworks-tls.c} | 110 ++++--- libgcc/config/gthr-vxworks.c | 87 ++++++ libgcc/config/gthr-vxworks.h | 272 +++++++++++++---- libgcc/config/t-gthr-vxworks | 5 + libgcc/config/t-gthr-vxworksae | 7 + libgcc/config/t-vxcrtstuff | 12 + libgcc/config/t-vxworks | 3 - libgcc/config/t-vxworks7 | 4 - libgcc/config/{t-vxworks => t-vxworksae} | 11 +- libgcc/config/vxcrtstuff.c | 132 ++++++++ libgcc/config/vxlib.c | 95 ------ 18 files changed, 1065 insertions(+), 237 deletions(-) create mode 100644 libgcc/config/gthr-vxworks-cond.c create mode 100644 libgcc/config/gthr-vxworks-thread.c rename libgcc/config/{vxlib-tls.c => gthr-vxworks-tls.c} (78%) create mode 100644 libgcc/config/gthr-vxworks.c create mode 100644 libgcc/config/t-gthr-vxworks create mode 100644 libgcc/config/t-gthr-vxworksae create mode 100644 libgcc/config/t-vxcrtstuff copy libgcc/config/{t-vxworks => t-vxworksae} (61%) create mode 100644 libgcc/config/vxcrtstuff.c delete mode 100644 libgcc/config/vxlib.c