aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'memplugin_qnx.c')
-rw-r--r--memplugin_qnx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/memplugin_qnx.c b/memplugin_qnx.c
index c91193e..67311c1 100644
--- a/memplugin_qnx.c
+++ b/memplugin_qnx.c
@@ -99,6 +99,7 @@ void *memplugin_alloc(int sz, int height, MemRegion region, int align, int flags
99 return (H2P(h)); 99 return (H2P(h));
100 } 100 }
101EXIT: 101EXIT:
102 DEBUG("memplugin_alloc eError=%d", eError);
102 return (NULL); 103 return (NULL);
103} 104}
104 105
@@ -122,7 +123,8 @@ void memplugin_free(void *ptr)
122 } else { 123 } else {
123 ERROR("Tiler 2D Allocation/Free not implemented"); 124 ERROR("Tiler 2D Allocation/Free not implemented");
124 } 125 }
125EXIT:; 126EXIT:
127 DEBUG("memplugin_free eError=%d", eError);
126} 128}
127 129
128inline int32_t memplugin_share(void *ptr) 130inline int32_t memplugin_share(void *ptr)