Jeff Ames
|
5752c1f5c2
Formatting cleanup.
|
16 年之前 |
Charles Krinke
|
2cea74181a
Thank you very much, Xantor for a patch that:
|
16 年之前 |
Justin Clarke Casey
|
61bba6375c
* Fix mantis 1325. This is a minor issue where 'show assets' would not work fully in the region console
|
16 年之前 |
Justin Clarke Casey
|
1f57fd4bec
* Minor: Tidy ups and logging tweaks.
|
16 年之前 |
Justin Clarke Casey
|
f6add412d6
* Refactor: Eliminate empty if clause from AssetCache.GetAsset()
|
16 年之前 |
Justin Clarke Casey
|
63ddbfb979
* Eliminate occurences of "Got a texture uuid ... with no sender object to handle it..." by properly dealing with the situation where a client still has queued texture requests when it logs out
|
16 年之前 |
Justin Clarke Casey
|
c2581c9577
* Cache knowledge in the region server that the asset service has reported an asset to be missing
|
16 年之前 |
Justin Clarke Casey
|
772f88d2e5
* Removing unnecessary LLUUID.Zero check from AssetCache
|
16 年之前 |
Jeff Ames
|
65c5efe43b
Formatting cleanup.
|
16 年之前 |
Teravus Ovares
|
e8478dadc8
* Experiment in Zerocoding.
|
16 年之前 |
Adam Frisby
|
4fa0cbdfbb
* You can haz more spring cleaning.
|
16 年之前 |
Adam Frisby
|
01f31fd933
* Breaking all the code, breaking all the code..!
|
16 年之前 |
Adam Frisby
|
fef3b36894
* Optimised using statements and namespace references across entire project (this took a while to run).
|
16 年之前 |
Justin Clarke Casey
|
57afbdbdbd
From: Kurt Taylor <[email protected]>
|
16 年之前 |
Jeff Ames
|
47180080f0
Formatting cleanup.
|
16 年之前 |
MW
|
70ad5604cd
disabled AssetDownloadModule and re-enabled the asset download code in the asset cache, until it can be seen if the module was the cause of some new problems that seem like they might be related to assets. I'll look into this more tomorrow.
|
16 年之前 |
MW
|
2c65c2da90
small fix in the showstate data in AssetCache to reflect that now some functions are no longer in AssetCache
|
16 年之前 |
MW
|
e978d00914
After seeing sdague do his happy dance over trunk working "the best he has ever seen". I'm not sure I should be doing this commit, but oh well.
|
16 年之前 |
MW
|
aac7c1dda5
another attempt at fixing asset lockups
|
16 年之前 |
MW
|
a9ae5ab840
Hopefully fixed the bug that was causing a lot of the freezing. Which was happening due to locks in the AssetCache and Texturedownload module. Where the thread from the Asset thread would be take a lock on a list in the asset cache and then try to call the Callback into the texturedownload module and hit a lock in there which was held by a ClientView thread- which at the same time would be trying to request another texture from the cache and be hitting the lock in there held by the IClientAPI. The result each thread waiting for the other one to release a lock. And as one of those was the ClientView process packet thread. No more packets from that client could be processed. For now I've made a copy of the list in AssetCache so that it can release the lock. I'm doing more work on assets (moving the client asset downloading to a module ), so will hopefully change this into a better method once I've cleaned over things up a bit.
|
16 年之前 |
Justin Clarke Casey
|
65862aacea
* Start sending "ImageNotFound" packet back to the client if we can't find an image
|
16 年之前 |
Justin Clarke Casey
|
f95ad65189
* Improve alignment of packet queue stats headigns
|
16 年之前 |
Justin Clarke Casey
|
fed46ba6a7
* Winnow the debug and info messages associated with stat fetching
|
16 年之前 |
Tedd Hansen
|
7102ac7769
"threads" command now works. I've added manual tracking of threads (only if compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
|
16 年之前 |
Justin Clarke Casey
|
b0c5ef0b68
* Eliminate AssetCache.CopyAsset()
|
16 年之前 |
Justin Clarke Casey
|
7d7ad4dff2
* Only count download requests for assets which are not already waiting for data from the asset server
|
16 年之前 |
Justin Clarke Casey
|
f3190810d3
* Properly guard removal of asset request lists on AssetCache.AssetNotFound (my own bug)
|
16 年之前 |
Justin Clarke Casey
|
53d5aeec24
* Remove unused texture dictionaries from AssetCache
|
16 年之前 |
Justin Clarke Casey
|
c66b5a9e71
Report command string on ConsoleBase.RunCommand exception
|
16 年之前 |
Justin Clarke Casey
|
877713999c
* Report 'asset not found' situations back to UserTextureDownloadService
|
16 年之前 |