Ignore:
Timestamp:
Sep 27, 2005, 7:25:58 PM (20 years ago)
Author:
adele
Message:

JavaScriptCore:

Reviewed by Maciej.

Changed ints to size_t where appropriate.

  • kjs/collector.cpp: (KJS::Collector::allocate): (KJS::Collector::markStackObjectsConservatively): (KJS::Collector::collect): (KJS::Collector::size): (KJS::Collector::numInterpreters): (KJS::Collector::numGCNotAllowedObjects): (KJS::Collector::numReferencedObjects):
  • kjs/collector.h:

WebCore:

Reviewed by Maciej.

Changing ints to size_t where appropriate.

  • kwq/WebCoreJavaScript.h:
  • kwq/WebCoreJavaScript.mm: (+[WebCoreJavaScript objectCount]): (+[WebCoreJavaScript interpreterCount]): (+[WebCoreJavaScript noGCAllowedObjectCount]): (+[WebCoreJavaScript referencedObjectCount]):

WebKit:

Reviewed by Maciej.

Changed ints to size_t where appropriate.

  • Misc.subproj/WebCoreStatistics.h:
  • Misc.subproj/WebCoreStatistics.m: (+[WebCoreStatistics javaScriptObjectsCount]): (+[WebCoreStatistics javaScriptInterpretersCount]): (+[WebCoreStatistics javaScriptNoGCAllowedObjectsCount]): (+[WebCoreStatistics javaScriptReferencedObjectsCount]):
  • WebView.subproj/WebPreferences.m: (-[WebPreferences _pageCacheSize]): (-[WebPreferences _objectCacheSize]):
  • WebView.subproj/WebPreferencesPrivate.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/collector.h

    r9768 r10641  
    5454     */
    5555    static bool collect();
    56     static int size();
     56    static size_t size();
    5757    static bool outOfMemory() { return memoryFull; }
    5858
     
    6464#endif
    6565
    66     static int numInterpreters();
    67     static int numGCNotAllowedObjects();
    68     static int numReferencedObjects();
     66    static size_t numInterpreters();
     67    static size_t numGCNotAllowedObjects();
     68    static size_t numReferencedObjects();
    6969#if APPLE_CHANGES
    7070    static const void *rootObjectClasses(); // actually returns CFSetRef
Note: See TracChangeset for help on using the changeset viewer.