diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2007-11-23 13:16:54 +0000 |
---|---|---|
committer | Samuel Tardieu <sam@gcc.gnu.org> | 2007-11-23 13:16:54 +0000 |
commit | bb1f5840b580ba1672d97cf0c8eccbcb50c3d3c0 (patch) | |
tree | 56a41285f1340e35411735052795b4b1e040e120 /gcc/ada/s-taprop-posix.adb | |
parent | 356d89619e375836a8ec1a38d9cf3a47b50e923a (diff) | |
download | gcc-bb1f5840b580ba1672d97cf0c8eccbcb50c3d3c0.tar.gz |
s-inmaop-posix.adb, [...]: Use 'Access instead of 'Unchecked_Access in second and third arguments of...
gcc/ada/
* s-inmaop-posix.adb, s-intman-vxworks.adb, s-taprop-hpux-dce.adb,
s-taprop-irix.adb, s-taprop-linux.adb, s-taprop-lynxos.adb,
s-taprop-posix.adb, s-taprop-tru64.adb, s-taprop-vxworks.adb:
Use 'Access instead of 'Unchecked_Access in second and third
arguments of pthread_sigmask.
From-SVN: r130376
Diffstat (limited to 'gcc/ada/s-taprop-posix.adb')
-rw-r--r-- | gcc/ada/s-taprop-posix.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/s-taprop-posix.adb b/gcc/ada/s-taprop-posix.adb index f9b30ce69c6..7d3df5c0755 100644 --- a/gcc/ada/s-taprop-posix.adb +++ b/gcc/ada/s-taprop-posix.adb @@ -226,7 +226,7 @@ package body System.Task_Primitives.Operations is -- Make sure signals used for RTS internal purpose are unmasked Result := pthread_sigmask (SIG_UNBLOCK, - Unblocked_Signal_Mask'Unchecked_Access, Old_Set'Unchecked_Access); + Unblocked_Signal_Mask'Access, Old_Set'Access); pragma Assert (Result = 0); raise Standard'Abort_Signal; |