[SPIGOT-5234] Unnecessary synchronization Created: 31/Jul/19 Updated: 01/Aug/19 Resolved: 01/Aug/19 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | Sunmisc | Assignee: | Unassigned |
Resolution: | Invalid | Votes: | 0 |
Labels: | bukkit, event |
Attachments: |
![]() ![]() |
Version: | 1.14.4 |
Guidelines Read: | Yes |
Description |
private volatile RegisteredListener[] handlers = null; ) which is declared as volatile. Such fields can be confusing because access to the array itself follows the rules for volatile fields, but access to the array content does not. the private static ArrayList<HandlerList> allLists = new ArrayList<>(); field is static, why synchronize it?(I could be wrong) |
Comments |
Comment by Black Hole [ 31/Jul/19 ] |
The goal is to have event calls fast. Registering and unregistering events is used mainly in plugin initialization only. bakeIt() and other static methods could be called from multiple threads at the same time, so it's important that allLists ist synchronized. |