Closed
Bug 394848
Opened 18 years ago
Closed 14 years ago
Scalable watch points
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: igor, Unassigned)
Details
Currently the complexity of many watch point operations is either w^2 or w*o where w is the number of watch points and o is number of allocated object. This comes from the fact that the implementation uses a linked list to store watch points.
Although simple, this can trivially be used for a denial of service. So it would be nice to have something more scalable.
![]() |
Reporter | |
Comment 2•18 years ago
|
||
I am not working on the bug right now.
![]() |
||
Comment 3•14 years ago
|
||
It seems to use a hash table now.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•