aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2013-06-2338-957/+963
|\
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2013-06-221-29/+35
| |\
| | * BulletSim: move new linear deflection code to own routine.Robert Adams2013-06-211-29/+35
| | | | | | | | | | | | | | | Remove VehicleForwardVelocity changed storage since the value will be modified as movement is processed.
| * | Change IsLocalRegion from using region handle to using regionID. This was ↵Diva Canto2013-06-223-7/+6
| | | | | | | | | | | | affecting UpdateAgent and CloseAgent in cases where the foreign region is on the same coordinates as *some* local region.
| * | HG: avoid call on localhost between sim and UAS for standalone.Diva Canto2013-06-221-1/+20
| | |
| * | Finally moved HG agent transfers to use agent fatpacks.Diva Canto2013-06-2111-365/+171
| |/
| * BulletSim: Implementation of Linear Deflection, it is a partial help for the ↵Vegaslon2013-06-201-5/+33
| | | | | | | | | | | | vehicle tuning diffrence between Opensim and Second life. Signed-off-by: Robert Adams <Robert.Adams@intel.com>
| * BulletSim: rework velocity updating when not colliding and not flyingRobert Adams2013-06-202-5/+42
| | | | | | | | | | | | | | to prevent infinite jumps. Now jumps last only AvatarJumpFrames long (default 4) which is about as high as in SL. TODO: jumping should only depend on standing (collision with feet) rather than collision anywhere on the avatar.
| * minor: remove mono compiler warnings in WebsocketServerHandler.csJustin Clark-Casey (justincc)2013-06-201-13/+7
| |
| * Change "ObjectMemory" stat to "HeapMemory" to align with other stat names. ↵Justin Clark-Casey (justincc)2013-06-201-3/+3
| | | | | | | | | | | | Also round this and ProcessMemory to three decimal places in common with other memory stats. I believe leaving out such minor info makes stats easier to read
| * Allow more than one stat category to be specified in "show stats"Justin Clark-Casey (justincc)2013-06-201-30/+34
| | | | | | | | e.g. "show stats httpserver.9000 server.network"
| * minor: Change "memory churn" terminology in statistics to "heap allocation ↵Justin Clark-Casey (justincc)2013-06-203-14/+14
| | | | | | | | rate" since this is more generally meaningful
| * Fix minor bug where the check whether to display SmartThreadPool stats was ↵Justin Clark-Casey (justincc)2013-06-201-1/+1
| | | | | | | | | | | | accidentally != null rather than == FireAndForgetMethod.SmartThreadPool Due to another check this had no practical effect
| * minor: fix mono compiler warning in FetchInventory2HandlerJustin Clark-Casey (justincc)2013-06-201-2/+2
| |
| * Make it possible to specify display of stats in a particular 'container' by ↵Justin Clark-Casey (justincc)2013-06-202-3/+17
| | | | | | | | | | | | | | | | | | separating category and container with a period. e.g. "show stats server.network" I failed to realize this had already been implemented without the period in the show stats command (as the command help had not been updated). However, I would prefer the . approach as it will allow specifying multiple stats, easier wildcarding, etc. This commit also prevents any stat from having a period in its short name.
| * Display existing statistic of how many http requests a server is making as ↵Justin Clark-Casey (justincc)2013-06-193-5/+23
| | | | | | | | server.network.HTTPRequestsMade in "show stats all"
| * Mantis 6608: Math error in parcel dimensions/borders seen with land show commandTalun2013-06-191-10/+10
| | | | | | | | | | | | | | This patch changes the land show console command to return numbers in the range 4 to 256 for the "to" coordinates instead of 0 to 252 Also trailing spaces removed from some lines.
| * minor: remove mono compiler warning in OfflineIMServiceJustin Clark-Casey (justincc)2013-06-181-1/+1
| |
| * Prevent an exception if no offline messages were retrieved.Kevin Cozens2013-06-181-0/+3
| |
| * minor: tidy up spacing if display a unit for additional stat informationJustin Clark-Casey (justincc)2013-06-181-1/+1
| |
| * Make number of inbound http requests handled available as a ↵Justin Clark-Casey (justincc)2013-06-184-6/+36
| | | | | | | | httpserver.<port>.IncomingHTTPRequestsProcessed stat
| * Fix issue where stat samples were accidentally static, so that any ↵Justin Clark-Casey (justincc)2013-06-181-1/+1
| | | | | | | | additional stat with sampling would produce wrong results
| * Fix other places when saving scripts or notecards in prim inventories where ↵Justin Clark-Casey (justincc)2013-06-181-5/+5
| | | | | | | | messages should be transient without an OK button
| * If SmartThreadPool is active, display statistical information about it in ↵Justin Clark-Casey (justincc)2013-06-181-2/+13
| | | | | | | | | | | | "show stats server" Also puts these and previous builtin threadpool stats in the "threadpool" stat container rather than "processor"
| * refactor: Move existing code to generate report information on the ↵Justin Clark-Casey (justincc)2013-06-172-64/+103
| | | | | | | | threadpool to the ServerBase rather than being in Util
| * Fix bug where no threadpool data would be displayed in the "show threads" ↵Justin Clark-Casey (justincc)2013-06-171-1/+1
| | | | | | | | command if threadpool type was QueueUserWorkItem (Unsafe worked as expected)
| * minor: remove mono compiler warnings in WebFetchInvDescModuleJustin Clark-Casey (justincc)2013-06-171-3/+2
| |
| * Fix test failure in BasicCircuitTests from previous commit 0d2fd0d9Justin Clark-Casey (justincc)2013-06-171-2/+2
| |
| * Drop server level stats to debug instead of info.Justin Clark-Casey (justincc)2013-06-171-1/+1
| | | | | | | | | | | | This was the original intention with these stats, as I didn't believe they would be useful to ordinary users if everything is working as it should. Please amend if this is an issue. Just for now, levels actually have no impact on what is displayed via the "show stats" command.
| * Add server stats for available builtin threadpool and iocp workersJustin Clark-Casey (justincc)2013-06-171-0/+16
| |
| * Make general server stats available on the robust console as well as the ↵Justin Clark-Casey (justincc)2013-06-1710-421/+404
| | | | | | | | | | | | simulator console This means the "show stats" command is now active on the robust console.
* | Fix prim locking to behave like SLMelanie2013-06-231-2/+2
|/
* correct method doc for llRot2Axis()dahlia2013-06-141-1/+1
|
* Lock m_classifiedCache and m_classifiedInterest dictionary reads in ↵Justin Clark-Casey (justincc)2013-06-151-14/+13
| | | | | | UserProfileModule since in the presence of writes these are not thread-safe operations. Simplified locking to m_classifiedCache only since r/w of both dictionaries always occurs together
* Correct build break in previous commit 9c530d7Justin Clark-Casey (justincc)2013-06-151-10/+7
|
* refactor: In UserProfileModule, change classifiedCache and ↵Justin Clark-Casey (justincc)2013-06-151-19/+23
| | | | | | classifiedInterest to m_classifiedCache and m_classifiedInterest This is the coding standard name style for private fields.
* Add the standard OpenSimulator copyright notice to the top of InventoryCache.csJustin Clark-Casey (justincc)2013-06-151-1/+28
|
* Adjust the locking on InventoryCache. Locking for r/w of the ExpiringCache ↵Justin Clark-Casey (justincc)2013-06-151-14/+23
| | | | isn't needed since it's thread safe but r/w of contained dictionaries isn't thread-safe
* minor: remove mono compiler warnings from LSL_Api, properly format method ↵Justin Clark-Casey (justincc)2013-06-151-7/+5
| | | | doc for llRot2Axis()
* Mantis 6280: llSetContentType(). An implementation.Talun2013-06-154-0/+84
| | | | | An implimentation of llSetContentType including all of the new constants added since the mantis was raised.
* Mantis 6108: ossetprimitiveparams temporary/phantom problemTalun2013-06-151-2/+2
| | | | | | Corrected to ensure that the target prim is updated by osSetPrimitiveParams when setting PRIM_TEMP_ON_REZ and/or PRIM_PHANTOM instead of the prim that the script is in.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2013-06-147-10/+37
|\
| * Merge branch 'master' of /home/opensim/src/opensimBlueWall2013-06-135-2/+29
| |\
| | * Add Option: ClassifiedFeeBlueWall2013-06-135-2/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add option to set minimum fee for publishing classifieds. Many viewers have a hard coded minimum of 50, which makes publishing classifieds fail where grids have no economy. This allows the grid to set the minimum fee to a suitable value for their operation. The option is located in the [LoginService] section and defaults to 0. The value is sent as "classified_fee" in the login response.
| * | Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2013-06-1215-122/+227
| |\ \
| * | | DataSnapshot: changed those annoying messages to Debug instead of Info.Diva Canto2013-06-122-8/+8
| | | |
* | | | Don't try to abort worker threads in WebFetchInvDescModule if module was not ↵Justin Clark-Casey (justincc)2013-06-141-6/+4
| |/ / |/| | | | | | | | | | | | | | enabled. This also moves the abort to RemoveRegion() rather than a destructor.
* | | Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2013-06-133-4/+8
|\ \ \
| * | | * This fixes having to select and deselect prim to get keyframemotion to ↵teravus2013-06-123-4/+8
| | | | | | | | | | | | | | | | start running when pulled from data storage.
* | | | Make XInventoryServicesConnector properly handle a RESULT = false return for ↵Justin Clark-Casey (justincc)2013-06-131-68/+56
|/ / / | | | | | | | | | | | | | | | methods where this contains failure rather than throwing an exception. Result = False is generated for methods such as GetFolderForType() when the other end wants to signal a failure of the operation in methods such as GetFolderForType()