aboutsummaryrefslogtreecommitdiff
path: root/include/mem_region-malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mem_region-malloc.h')
-rw-r--r--include/mem_region-malloc.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/include/mem_region-malloc.h b/include/mem_region-malloc.h
new file mode 100644
index 0000000..9c772d2
--- /dev/null
+++ b/include/mem_region-malloc.h
@@ -0,0 +1,41 @@
+/* Copyright 2013-2014 IBM Corp.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __MEM_REGION_MALLOC_H
+#define __MEM_REGION_MALLOC_H
+
+#define __loc2(line) #line
+#define __loc(line) __loc2(line)
+#define __location__ __FILE__ ":" __loc(__LINE__)
+
+void *__malloc(size_t size, const char *location);
+void *__zalloc(size_t size, const char *location);
+void *__realloc(void *ptr, size_t size, const char *location);
+void __free(void *ptr, const char *location);
+void *__memalign(size_t boundary, size_t size, const char *location);
+
+#define malloc(size) __malloc(size, __location__)
+#define zalloc(size) __zalloc(size, __location__)
+#define realloc(ptr, size) __realloc(ptr, size, __location__)
+#define free(ptr) __free(ptr, __location__)
+#define memalign(boundary, size) __memalign(boundary, size, __location__)
+
+void *__local_alloc(unsigned int chip, size_t size, size_t align,
+ const char *location);
+#define local_alloc(chip_id, size, align) \
+ __local_alloc((chip_id), (size), (align), __location__)
+
+#endif /* __MEM_REGION_MALLOC_H */