diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2015-01-07 11:01:36 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2015-01-07 11:01:36 +0100 |
commit | b6e5a1ec2c33cd98e0f3ca4818993a3a00ef05eb (patch) | |
tree | 4eb124c0f545fe0c324ad5c3c3a45721286d025c /gcc/ada/s-vxwext-kernel.adb | |
parent | c3831524bc0bf8d15bc95e26832a2a5e0752f9cc (diff) | |
download | gcc-b6e5a1ec2c33cd98e0f3ca4818993a3a00ef05eb.zip gcc-b6e5a1ec2c33cd98e0f3ca4818993a3a00ef05eb.tar.gz gcc-b6e5a1ec2c33cd98e0f3ca4818993a3a00ef05eb.tar.bz2 |
[multiple changes]
2015-01-07 Vincent Celier <celier@adacore.com>
* clean.adb (Gnatclean): Warn that 'gnatclean -P' is obsolete.
* make.adb (Initialize): Warn that 'gnatmake -P' is obsolete.
2015-01-07 Vincent Celier <celier@adacore.com>
* prj-conf.adb (Parse_Project_And_Apply_Config): Always finalize
errors/warnings in the first parsing of the project files,
to display the warnings when there is no errors.
2015-01-07 Tristan Gingold <gingold@adacore.com>
* i-cpoint.adb (Copy_Terminated_Array): Nicely handle null target.
2015-01-07 Doug Rupp <rupp@adacore.com>
* s-taprop-vxworks.adb (Stop_All_Tasks): Pass return
value from Int_Lock as parameter to Int_Unlock.
* s-osinte-vxworks.ads (Int_Unlock): Add parameter.
* s-vxwext.ads (Int_Unlock): Likewise.
* s-vxwext-kernel.adb (intUnlock, Int_Unlock): Likewise.
* s-vxwext-kernel.ads (Int_Unlock): Likewise.
* s-vxwext-rtp.adb (Int_Unlock): Likewise.
* s-vxwext-rtp.ads (Int_Unlock): Likewise.
2015-01-07 Pierre-Marie de Rodat <derodat@adacore.com>
* exp_pakd.adb: Add a comment in exp_pakd.adb to explain why we
keep ___XP suffixes
From-SVN: r219288
Diffstat (limited to 'gcc/ada/s-vxwext-kernel.adb')
-rw-r--r-- | gcc/ada/s-vxwext-kernel.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/s-vxwext-kernel.adb b/gcc/ada/s-vxwext-kernel.adb index cd2ac26..584de4f 100644 --- a/gcc/ada/s-vxwext-kernel.adb +++ b/gcc/ada/s-vxwext-kernel.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2008-2011, Free Software Foundation, Inc. -- +-- Copyright (C) 2008-2014, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -49,10 +49,10 @@ package body System.VxWorks.Ext is -- Int_Unlock -- ---------------- - function intUnlock return int; + function intUnlock (Old : int) return int; pragma Import (C, intUnlock, "intUnlock"); - function Int_Unlock return int renames intUnlock; + function Int_Unlock (Old : int) return int renames intUnlock; --------------- -- semDelete -- |