[commit][3227] Add a processor-agnostic file to include the relevant processor-specific callout

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[commit][3227] Add a processor-agnostic file to include the relevant processor-specific callout

commits-3
 
Revision: 3227
Author:   eliot
Date:     2015-01-13 10:04:53 -0800 (Tue, 13 Jan 2015)
Log Message:
-----------
Add a processor-agnostic file to include the relevant processor-specific callout
and callback support for the ALien plugin.

Added Paths:
-----------
    trunk/platforms/Cross/plugins/IA32ABI/xabicc.c

Property Changed:
----------------
    trunk/platforms/Cross/plugins/sqPluginsSCCSVersion.h

Added: trunk/platforms/Cross/plugins/IA32ABI/xabicc.c
===================================================================
--- trunk/platforms/Cross/plugins/IA32ABI/xabicc.c                        (rev 0)
+++ trunk/platforms/Cross/plugins/IA32ABI/xabicc.c 2015-01-13 18:04:53 UTC (rev 3227)
@@ -0,0 +1,14 @@
+/*
+ *  xabicc.c - platform-agnostic root for ALien call-outs and callbacks.
+ *
+ * Support for Call-outs and Call-backs from the IA32ABI Plugin.
+ * The plgin is misnamed.  It should be the AlienPlugin, but its history
+ * dictates otherwise.
+ */
+#if i386|i486|i586|i686
+# include "ia32abicc.c"
+#elif powerpc|ppc
+# include "ppcia32abicc.c"
+#elif x86_64|x64
+# include "x64ia32abicc.o"
+#endif


Property changes on: trunk/platforms/Cross/plugins/sqPluginsSCCSVersion.h
___________________________________________________________________
Modified: checkindate
   - Fri Jan  9 13:59:25 PST 2015
   + Tue Jan 13 10:04:25 PST 2015