Changeset 24874 in webkit for trunk/JavaScriptCore/API/JSBase.cpp
- Timestamp:
- Aug 5, 2007, 3:16:41 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSBase.cpp
r16371 r24874 1 1 // -*- mode: c++; c-basic-offset: 4 -*- 2 2 /* 3 * Copyright (C) 2006 Apple Computer, Inc.All rights reserved.3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 4 4 * 5 5 * Redistribution and use in source and binary forms, with or without … … 80 80 { 81 81 JSLock lock; 82 Collector::collect(); 82 if (!Collector::isBusy()) 83 Collector::collect(); 84 // FIXME: Perhaps we should trigger a second mark and sweep 85 // once the garbage collector is done if this is called when 86 // the collector is busy. 83 87 }
Note:
See TracChangeset
for help on using the changeset viewer.