Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cosmetics | UbitUmarov | 2019-01-29 | 1 | -9/+27 |
| | |||||
* | more changes on scenegraph etc | UbitUmarov | 2019-01-06 | 1 | -70/+28 |
| | |||||
* | change its foreach | UbitUmarov | 2019-01-06 | 1 | -21/+5 |
| | |||||
* | let DoubleDictionary... also have a values array | UbitUmarov | 2019-01-06 | 1 | -0/+47 |
| | |||||
* | we can't allow abort to change only one dic | UbitUmarov | 2017-05-13 | 1 | -29/+33 |
| | |||||
* | fix wrong locking on unused path it case it does get uses. Thanks LaNani Sundara | UbitUmarov | 2017-05-13 | 1 | -1/+1 |
| | |||||
* | Massive tab and trailing space cleanup | Melanie Thielker | 2017-01-05 | 1 | -62/+62 |
| | |||||
* | a few more changes on potencial mem issues | UbitUmarov | 2016-11-18 | 1 | -0/+5 |
| | |||||
* | Use a thread abort safe version of OpenMetaverse.DoubleDictionary with the ↵ | Justin Clark-Casey (justincc) | 2012-12-07 | 1 | -0/+508 |
aim of avoiding OpenSimulator problems due to script thread aborts. When an object is removed, its scripts are stopped and then the thread running them is aborted if stop takes too long. However, it appears that aborting a thread at just the wrong moment when it is obtaining a ReaderWriterLockSlim lock can leave this lock in an inconsistent state. One symptom of this is that mono leaps to 100% cpu and a vm thread dump reveals lots of threads waiting for a ReaderWriterLockSlim lock without any thread actually holding it. This is probably the same problem as encountered originally in commit 12cebb12 This commit looks to plaster this problem by putting lock obtaining methods inside finally blocks which should be uninterruptible by thread aborts. |