mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 12:25:42 +08:00
Label all threadpool calls being made in core OpenSimulator. This is to add problem diagnosis.
"show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats.
This commit is contained in:
@@ -198,7 +198,8 @@ namespace OpenSim.Services.HypergridService
|
||||
// So let's send back the call, but start a thread to continue
|
||||
// with the verification and the actual action.
|
||||
|
||||
Util.FireAndForget(delegate { ProcessFriendshipOffered(fromID, fromName, toID, message); });
|
||||
Util.FireAndForget(
|
||||
o => ProcessFriendshipOffered(fromID, fromName, toID, message), null, "HGFriendsService.ProcessFriendshipOffered");
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user