summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuan Zhao2017-08-24 13:30:35 -0500
committerYuan Zhao2017-08-24 13:30:35 -0500
commitde7954abab0f0caa8a2c7b53095c30226d901a31 (patch)
tree6f2914d3f97342faf67c17df7dcdf3f2f545d346
parentce60bf4ebea1f5d1c1696d77f988ff4cd2cf85a5 (diff)
downloadctoolslib-opencl_aetlib_build.tar.gz
ctoolslib-opencl_aetlib_build.tar.xz
ctoolslib-opencl_aetlib_build.zip
Initialize global variable for memory placementopencl_aetlib_build
-rw-r--r--aet/src/aet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aet/src/aet.c b/aet/src/aet.c
index 4a504b5..fbf7878 100644
--- a/aet/src/aet.c
+++ b/aet/src/aet.c
@@ -101,7 +101,7 @@
101 101
102/* Global Variables */ 102/* Global Variables */
103#pragma DATA_SECTION(_AET_globalParams, ".ctools_core_private") 103#pragma DATA_SECTION(_AET_globalParams, ".ctools_core_private")
104_AET_globalVars _AET_globalParams; /* Global Structure for Parameters */ 104_AET_globalVars _AET_globalParams = {0}; /* Global Structure for Parameters */
105 105
106const _AET_debugInfo _AET_debugInfoDatabase[] = { _AET_DEBUG_TABLE }; 106const _AET_debugInfo _AET_debugInfoDatabase[] = { _AET_DEBUG_TABLE };
107 107