Closed
Bug 1301796
Opened 9 years ago
Closed 9 years ago
Fix potential race in RegisterJSRuntime
Categories
(Core :: XPCOM, defect)
Core
XPCOM
Tracking
()
RESOLVED
FIXED
mozilla51
| Tracking | Status | |
|---|---|---|
| firefox51 | --- | fixed |
People
(Reporter: mccr8, Assigned: mccr8)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
This method uses a static bool to detect if the CC has been registered as a memory reporter yet. We now have CC on workers in addition to the main thread, so potentially multiple threads are accessing this single variable. I think it isn't a problem in practice because the main thread's CC runtime should be completely started up before we start any worker CC runtime, but it still feels questionable. I also am not sure why this boolean is needed, as RegisterJSRuntime should only be called once per CC.
| Assignee | ||
Comment 1•9 years ago
|
||
| Comment hidden (mozreview-request) |
Comment 3•9 years ago
|
||
| mozreview-review | ||
Comment on attachment 8790780 [details]
Bug 1301796 - Remove racy code in nsCycleCollector::RegisterJSRuntime.
https://reviewboard.mozilla.org/r/78446/#review76968
And we don't want worker CCRuntimes to be registered or something?
(but that would be a different bug)
Attachment #8790780 -
Flags: review?(bugs) → review+
| Assignee | ||
Comment 4•9 years ago
|
||
(In reply to Olli Pettay [:smaug] from comment #3)
> And we don't want worker CCRuntimes to be registered or something?
> (but that would be a different bug)
I'm not entirely sure how memory reporter registration workers for non-mainthread. Possibly it just works. Anyways, I already have bug 1283251 on file.
Blocks: 1283251
Pushed by amccreight@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/0f7f9fa31c4a
Remove racy code in nsCycleCollector::RegisterJSRuntime. r=smaug
Comment 6•9 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla51
You need to log in
before you can comment on or make changes to this bug.
Description
•