Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2849)

Unified Diff: base/process_util_mac.mm

Issue 2131010: Fix definition of CFAllocator (malloc_zone_t changed size between 10.5 and 10... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util_mac.mm
===================================================================
--- base/process_util_mac.mm (revision 47522)
+++ base/process_util_mac.mm (working copy)
@@ -231,7 +231,7 @@
*shared_bytes = 0;
return true;
}
-
+
void ProcessMetrics::GetCommittedKBytes(CommittedKBytes* usage) const {
}
@@ -418,9 +418,33 @@
// === Core Foundation CFAllocators ===
// This is the real structure of a CFAllocatorRef behind the scenes. See
-// http://opensource.apple.com/source/CF/CF-550/CFBase.c for details.
+// http://opensource.apple.com/source/CF/CF-476.19/CFBase.c (10.5.8) and
+// http://opensource.apple.com/source/CF/CF-550/CFBase.c (10.6) for details.
+struct ChromeCFRuntimeBase {
+ uintptr_t _cfisa;
+ uint8_t _cfinfo[4];
+#if __LP64__
+ uint32_t _rc;
+#endif
+};
+
struct ChromeCFAllocator {
- _malloc_zone_t fake_malloc_zone;
+ ChromeCFRuntimeBase cf_runtime_base;
+ size_t (*size)(struct _malloc_zone_t* zone, const void* ptr);
+ void* (*malloc)(struct _malloc_zone_t* zone, size_t size);
+ void* (*calloc)(struct _malloc_zone_t* zone, size_t num_items, size_t size);
+ void* (*valloc)(struct _malloc_zone_t* zone, size_t size);
+ void (*free)(struct _malloc_zone_t* zone, void* ptr);
+ void* (*realloc)(struct _malloc_zone_t* zone, void* ptr, size_t size);
+ void (*destroy)(struct _malloc_zone_t* zone);
+ const char* zone_name;
+ unsigned (*batch_malloc)(struct _malloc_zone_t* zone, size_t size,
+ void** results, unsigned num_requested);
+ void (*batch_free)(struct _malloc_zone_t* zone, void** to_be_freed,
+ unsigned num_to_be_freed);
+ struct malloc_introspection_t* introspect;
+ void* reserved5;
+
void* allocator;
CFAllocatorContext context;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698