diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-16 08:33:28 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-16 08:33:28 +0000 |
commit | 50fa76135f8430273372a03baa627cbdf607b241 (patch) | |
tree | baccf4205db20ef7eb674c967f68d5e071899d87 /gcc/ada/s-vxwext-kernel.ads | |
parent | 81ba69b46a21aa139ca93ff08fd887949c010e15 (diff) | |
download | gcc-50fa76135f8430273372a03baa627cbdf607b241.tar.gz |
2009-04-16 Olivier Hainque <hainque@adacore.com>
* gnat_ugn.texi (gnatmem description): Make it explicit that
gnatmem is designed to work in association with static runtime
library only.
2009-04-16 Thomas Quinot <quinot@adacore.com>
* sem_type.adb: Minor reformatting
2009-04-16 Hristian Kirtchev <kirtchev@adacore.com>
* s-osprim-darwin.adb, s-osprim-posix.adb (Clock): Add comment
concerning return codes of gettimeofday and return value check.
2009-04-16 Ed Falis <falis@adacore.com>
* s-vxwext-kernel.ads (Int_Lock, Int_Unlock): set to convention C so
body can be renaming of imported routines.
2009-04-16 Vasiliy Fofanov <fofanov@adacore.com>
* s-asthan-vms-alpha.adb: Disable warnings on alignment in a more
targeted fashion.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@146149 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-vxwext-kernel.ads')
-rw-r--r-- | gcc/ada/s-vxwext-kernel.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/s-vxwext-kernel.ads b/gcc/ada/s-vxwext-kernel.ads index b0008e8e3e7..423acab2ba9 100644 --- a/gcc/ada/s-vxwext-kernel.ads +++ b/gcc/ada/s-vxwext-kernel.ads @@ -45,10 +45,10 @@ package System.VxWorks.Ext is type Interrupt_Vector is new System.Address; function Int_Lock return int; - pragma Inline (Int_Lock); + pragma Convention (C, Int_Lock); function Int_Unlock return int; - pragma Inline (Int_Unlock); + pragma Convention (C, Int_Unlock); function Interrupt_Connect (Vector : Interrupt_Vector; |