]>
Commit | Line | Data |
---|---|---|
e9ce8d39 A |
1 | /* |
2 | * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
734aad71 | 6 | * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. |
e9ce8d39 | 7 | * |
734aad71 A |
8 | * This file contains Original Code and/or Modifications of Original Code |
9 | * as defined in and that are subject to the Apple Public Source License | |
10 | * Version 2.0 (the 'License'). You may not use this file except in | |
11 | * compliance with the License. Please obtain a copy of the License at | |
12 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
13 | * file. | |
14 | * | |
15 | * The Original Code and all software distributed under the License are | |
16 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
e9ce8d39 A |
17 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
18 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
734aad71 A |
19 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
20 | * Please see the License for the specific language governing rights and | |
21 | * limitations under the License. | |
e9ce8d39 A |
22 | * |
23 | * @APPLE_LICENSE_HEADER_END@ | |
24 | */ | |
25 | ||
26 | #import <objc/malloc.h> | |
27 | ||
28 | #define SCALABLE_MALLOC_ADD_GUARD_PAGES (1 << 0) | |
29 | // add a guard page before and after each VM region to help debug | |
30 | #define SCALABLE_MALLOC_DONT_PROTECT_PRELUDE (1 << 1) | |
31 | // do not protect prelude page | |
32 | #define SCALABLE_MALLOC_DONT_PROTECT_POSTLUDE (1 << 2) | |
33 | // do not protect postlude page | |
34 | #define SCALABLE_MALLOC_DO_SCRIBBLE (1 << 3) | |
35 | // write 0x55 onto free blocks | |
36 | ||
37 | extern malloc_zone_t *create_scalable_zone(size_t initial_size, unsigned debug_flags); | |
38 | /* Create a new zone that scales for small objects or large objects */ | |
39 | ||
40 | /***** Private API for debug and performance tools ********/ | |
41 | ||
42 | #define scalable_zone_info_count 9 // maximum number of numbers | |
43 | ||
44 | extern void scalable_zone_info(malloc_zone_t *zone, unsigned *info, unsigned count); | |
45 | /* Fills info[] with some statistical information: | |
46 | info[0]: number of objects in use | |
47 | info[1]: number of bytes in use | |
48 | ... | |
49 | */ | |
50 |