]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - liboffloadmic/runtime/emulator/myo_service.cpp
backport: Makefile.am (liboffloadmic_host_la_DEPENDENCIES): Remove libcoi_host and...
[thirdparty/gcc.git] / liboffloadmic / runtime / emulator / myo_service.cpp
index e18abecd05cdc2a44e5e31c1160ce680ca302f2e..0473253f731c09e486c43ee27ec0241b343903c3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (c) 2014 Intel Corporation.  All Rights Reserved.
+    Copyright (c) 2014-2015 Intel Corporation.  All Rights Reserved.
 
     Redistribution and use in source and binary forms, with or without
     modification, are permitted provided that the following conditions
@@ -155,5 +155,49 @@ SYMBOL_VERSION (myoiTargetFptrTableRegister, 1) (void *table,
   return MYO_ERROR;
 }
 
+
+MYOACCESSAPI MyoError
+SYMBOL_VERSION (myoArenaRelease, 1) (MyoArena in_Arena)
+{
+  MYOTRACE ("myoArenaRelease");
+
+  assert (false);
+
+  return MYO_ERROR;
+}
+
+
+MYOACCESSAPI MyoError
+SYMBOL_VERSION (myoArenaAcquire, 1) (MyoArena in_Arena)
+{
+  MYOTRACE ("myoArenaAcquire");
+
+  assert (false);
+
+  return MYO_ERROR;
+}
+
+
+MYOACCESSAPI void
+SYMBOL_VERSION (myoArenaAlignedFree, 1) (MyoArena in_Arena, void *in_pPtr)
+{
+  MYOTRACE ("myoArenaAlignedFree");
+
+  assert (false);
+}
+
+
+MYOACCESSAPI void *
+SYMBOL_VERSION (myoArenaAlignedMalloc, 1) (MyoArena in_Arena, size_t in_Size,
+                                          size_t in_Alignment)
+{
+  MYOTRACE ("myoArenaAlignedMalloc");
+
+  assert (false);
+
+  return 0;
+}
+
+
 } // extern "C"