diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-22 08:25:43 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-22 08:25:43 +0000 |
commit | e9a597fe457cc2062847d037eff33da8eed5dbc7 (patch) | |
tree | 44d4b4d401a22261e056fbd78171ceccf1ac25c5 /gcc/ada/s-vxwext-kernel.adb | |
parent | e6f9d301a4a6085a086530c7b54414d03ceff5dd (diff) | |
download | gcc-e9a597fe457cc2062847d037eff33da8eed5dbc7.tar.gz |
2009-06-22 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r148777
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@148778 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-vxwext-kernel.adb')
-rw-r--r-- | gcc/ada/s-vxwext-kernel.adb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ada/s-vxwext-kernel.adb b/gcc/ada/s-vxwext-kernel.adb index 733772bdf8a..ad609f3cf81 100644 --- a/gcc/ada/s-vxwext-kernel.adb +++ b/gcc/ada/s-vxwext-kernel.adb @@ -52,4 +52,15 @@ package body System.VxWorks.Ext is function Int_Unlock return int renames intUnlock; + --------------- + -- semDelete -- + --------------- + + function semDelete (Sem : SEM_ID) return int is + function Os_Sem_Delete (Sem : SEM_ID) return int; + pragma Import (C, Os_Sem_Delete, "semDelete"); + begin + return Os_Sem_Delete (Sem); + end semDelete; + end System.VxWorks.Ext; |