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 /bsd-core | |
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 'bsd-core')
-rw-r--r-- | bsd-core/drmP.h | 1 | ||||
-rw-r--r-- | bsd-core/drm_memory.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bsd-core/drmP.h b/bsd-core/drmP.h index ff4cd895..9cd41b8d 100644 --- a/bsd-core/drmP.h +++ b/bsd-core/drmP.h @@ -401,6 +401,7 @@ extern int DRM(version)( DRM_IOCTL_ARGS ); extern void DRM(mem_init)(void); extern void DRM(mem_uninit)(void); extern void *DRM(alloc)(size_t size, int area); +extern void *DRM(calloc)(size_t nmemb, size_t size, int area); extern void *DRM(realloc)(void *oldpt, size_t oldsize, size_t size, int area); extern void DRM(free)(void *pt, size_t size, int area); diff --git a/bsd-core/drm_memory.c b/bsd-core/drm_memory.c index edd9ffa6..dc0d3753 100644 --- a/bsd-core/drm_memory.c +++ b/bsd-core/drm_memory.c @@ -58,6 +58,11 @@ void *DRM(alloc)(size_t size, int area) return malloc(size, DRM(M_DRM), M_NOWAIT); } +void *DRM(calloc)(size_t nmemb, size_t size, int area) +{ + return malloc(size * nmemb, DRM(M_DRM), M_NOWAIT | M_ZERO); +} + void *DRM(realloc)(void *oldpt, size_t oldsize, size_t size, int area) { void *pt; |