diff options
author | Eric Anholt <anholt@freebsd.org> | 2003-08-29 19:16:13 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2003-08-29 19:16:13 +0000 |
commit | a7aebb6dac3287374721dd2101a4584f12c63c82 (patch) | |
tree | 7fa20b6fd3b750d18f0ed5709e2a8458ff4a4ab6 /linux/drm_memory_debug.h | |
parent | db781291164dfa10538776748df7af901c6b20a2 (diff) |
Add DRM(calloc), which is convenient, used by the new sis code, and takes
advantage of M_ZERO on BSDs.
Diffstat (limited to 'linux/drm_memory_debug.h')
-rw-r--r-- | linux/drm_memory_debug.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/linux/drm_memory_debug.h b/linux/drm_memory_debug.h index 3ef2a05c..fae419ec 100644 --- a/linux/drm_memory_debug.h +++ b/linux/drm_memory_debug.h @@ -167,6 +167,17 @@ void *DRM(alloc)(size_t size, int area) return pt; } +void *DRM(calloc)(size_t size, size_t nmemb, int area) +{ + void *addr; + + addr = DRM(alloc)(nmemb * size, area); + if (addr != NULL) + memset((void *)addr, 0, size * nmemb); + + return addr; +} + void *DRM(realloc)(void *oldpt, size_t oldsize, size_t size, int area) { void *pt; |