diff options
Diffstat (limited to 'gcc/ada/s-vxwext-kernel.adb')
-rw-r--r-- | gcc/ada/s-vxwext-kernel.adb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ada/s-vxwext-kernel.adb b/gcc/ada/s-vxwext-kernel.adb index ad609f3cf81..f93ba6bb8f1 100644 --- a/gcc/ada/s-vxwext-kernel.adb +++ b/gcc/ada/s-vxwext-kernel.adb @@ -63,4 +63,14 @@ package body System.VxWorks.Ext is return Os_Sem_Delete (Sem); end semDelete; + ------------------------ + -- taskCpuAffinitySet -- + ------------------------ + + function taskCpuAffinitySet (tid : t_id; CPU : int) return int is + pragma Unreferenced (tid, CPU); + begin + return ERROR; + end taskCpuAffinitySet; + end System.VxWorks.Ext; |