diff options
author | sam <sam@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-23 13:16:54 +0000 |
---|---|---|
committer | sam <sam@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-23 13:16:54 +0000 |
commit | 682b5967c7c187ce5a852bc134944f9acfd3585a (patch) | |
tree | 56a41285f1340e35411735052795b4b1e040e120 /gcc/ada/s-taprop-vxworks.adb | |
parent | 02f47b8f43868c1d037c74727b416c0916c7231c (diff) | |
download | gcc-682b5967c7c187ce5a852bc134944f9acfd3585a.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130376 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-taprop-vxworks.adb')
-rw-r--r-- | gcc/ada/s-taprop-vxworks.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/s-taprop-vxworks.adb b/gcc/ada/s-taprop-vxworks.adb index 9af031a499a..54c4f82c692 100644 --- a/gcc/ada/s-taprop-vxworks.adb +++ b/gcc/ada/s-taprop-vxworks.adb @@ -200,8 +200,8 @@ package body System.Task_Primitives.Operations is 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; |