diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2003-12-11 17:21:39 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2003-12-11 17:21:39 +0100 |
commit | a9f4e3d2443f96ef52e9dab4bf99206c9570bb3a (patch) | |
tree | 64c0eb57dcbb9ffb0c50f048966f75d1cf517d45 /gcc/ada/5wosinte.ads | |
parent | 226c4112ccce36700b3a426c28ebe08008ffebce (diff) | |
download | gcc-a9f4e3d2443f96ef52e9dab4bf99206c9570bb3a.tar.gz |
[multiple changes]
2003-12-11 Ed Falis <falis@gnat.com>
* 5zinit.adb: Clean up.
* 5zintman.adb (Notify_Exception): replaced case statement with a call
to __gnat_map_signal, imported from init.c to support
signal -> exception mappings that depend on the vxWorks version.
* init.c:
Created and exported __gnat_map_signal to support signal -> exception
mapping that is dependent on the VxWorks version.
Change mapping of SIGBUS from Program_Error to Storage_Error on VxWorks
2003-12-11 Vasiliy Fofanv <fofanov@act-europe.fr>
* 5wosinte.ads: Link with -mthreads switch.
2003-12-11 Arnaud Charlet <charlet@act-europe.fr>
* init.c (__gnat_install_handler [NetBSD]): Set
__gnat_handler_installed, as done on all other platforms.
Remove duplicated code.
2003-12-11 Jerome Guitton <guitton@act-europe.fr>
* Makefile.in (rts-zfp, rts-ravenscar): Create libgnat.a.
2003-12-11 Thomas Quinot <quinot@act-europe.fr>
* sinfo.ads: Fix inconsistent example code in comment.
2003-12-11 Robert Dewar <dewar@gnat.com>
* a-tiinau.adb: Add a couple of comments
* sem_ch3.adb: Minor reformatting
* sem_prag.adb:
Fix bad prototype of Same_Base_Type in body (code reading cleanup)
Minor reformatting throughout
2003-12-11 Ed Schonberg <schonberg@gnat.com>
* exp_ch7.adb (Establish_Transient_Scope): If the call is within the
bounds of a loop, create a separate block in order to generate proper
cleanup actions to prevent memory leaks.
* sem_res.adb (Resolve_Call): After a call to
Establish_Transient_Scope, the call may be rewritten and relocated, in
which case no further processing is needed.
* sem_util.adb: (Wrong_Type): Refine previous fix.
Fixes ACATS regressions.
PR ada/13353
* sem_prag.adb (Back_End_Cannot_Inline): A renaming_as_body can always
be inlined.
From-SVN: r74541
Diffstat (limited to 'gcc/ada/5wosinte.ads')
-rw-r--r-- | gcc/ada/5wosinte.ads | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/ada/5wosinte.ads b/gcc/ada/5wosinte.ads index cf9aee5a35b..8a74f50d14b 100644 --- a/gcc/ada/5wosinte.ads +++ b/gcc/ada/5wosinte.ads @@ -46,6 +46,8 @@ with Interfaces.C.Strings; package System.OS_Interface is pragma Preelaborate; + pragma Linker_Options ("-mthreads"); + subtype int is Interfaces.C.int; subtype long is Interfaces.C.long; |