From b4d6e96efe5914cdfc2dd9aaf33de12149220f86 Mon Sep 17 00:00:00 2001 From: Christopher Aillon Date: Mon, 31 Jan 2011 19:13:52 -0800 Subject: Remove the jemalloc specific patches They belong in XR, but have already been fixed in other ways anyway --- firefox4-jemalloc.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 firefox4-jemalloc.patch (limited to 'firefox4-jemalloc.patch') diff --git a/firefox4-jemalloc.patch b/firefox4-jemalloc.patch deleted file mode 100644 index 982483f..0000000 --- a/firefox4-jemalloc.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -up mozilla-central/memory/jemalloc/jemalloc.h.jemalloc mozilla-central/memory/jemalloc/jemalloc.h ---- mozilla-central/memory/jemalloc/jemalloc.h.jemalloc 2010-08-18 15:21:10.000000000 -0400 -+++ mozilla-central/memory/jemalloc/jemalloc.h 2010-09-01 16:50:38.615946834 -0400 -@@ -42,12 +42,12 @@ extern const char *_malloc_options; - - /* Darwin and Linux already have memory allocation functions */ - #if (!defined(MOZ_MEMORY_DARWIN) && !defined(MOZ_MEMORY_LINUX)) --void *malloc(size_t size); --void *valloc(size_t size); --void *calloc(size_t num, size_t size); --void *realloc(void *ptr, size_t size); --void free(void *ptr); --int posix_memalign(void **memptr, size_t alignment, size_t size); -+void *malloc(size_t size) __THROW __attribute_malloc__ __wur; -+void *valloc(size_t size) __THROW __attribute_malloc__ __wur; -+void *calloc(size_t num, size_t size) __THROW __attribute_malloc__ __wur; -+void *realloc(void *ptr, size_t size) __THROW __attribute_malloc__ __wur; -+void free(void *ptr) __THROW __attribute_malloc__ __wur; -+int posix_memalign(void **memptr, size_t alignment, size_t size) __THROW __attribute_malloc__ __wur; - #endif /* MOZ_MEMORY_DARWIN, MOZ_MEMORY_LINUX */ - - #if defined(MOZ_MEMORY_ANDROID) || defined(WRAP_MALLOC) -- cgit