OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Computer, Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 25 matching lines...) Expand all Loading... |
36 /*! | 36 /*! |
37 @function | 37 @function |
38 @abstract Reports an object's non-GC memory payload to the garbage collector. | 38 @abstract Reports an object's non-GC memory payload to the garbage collector. |
39 @param ctx The execution context to use. | 39 @param ctx The execution context to use. |
40 @param size The payload's size, in bytes. | 40 @param size The payload's size, in bytes. |
41 @discussion Use this function to notify the garbage collector that a GC object | 41 @discussion Use this function to notify the garbage collector that a GC object |
42 owns a large non-GC memory region. Calling this function will encourage the | 42 owns a large non-GC memory region. Calling this function will encourage the |
43 garbage collector to collect soon, hoping to reclaim that large non-GC memory | 43 garbage collector to collect soon, hoping to reclaim that large non-GC memory |
44 region. | 44 region. |
45 */ | 45 */ |
46 JS_EXPORT void JSReportExtraMemoryCost(JSContextRef ctx, size_t size) AVAILABLE_
AFTER_WEBKIT_VERSION_3_1; | 46 JS_EXPORT void JSReportExtraMemoryCost(JSContextRef ctx, size_t size) AVAILABLE_
IN_WEBKIT_VERSION_4_0; |
47 | 47 |
48 #ifdef __cplusplus | 48 #ifdef __cplusplus |
49 } | 49 } |
50 #endif | 50 #endif |
51 | 51 |
52 #endif /* JSBasePrivate_h */ | 52 #endif /* JSBasePrivate_h */ |
OLD | NEW |