1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +02:00

Renaming params with 'own' prefix to denote ownership transfer

This commit is contained in:
Brian Fiete 2020-05-07 05:47:18 -07:00
parent 0a6949a7d0
commit 7f0a81b5b3
2 changed files with 9 additions and 9 deletions

View file

@ -314,9 +314,9 @@ namespace System.Threading
[CallingConvention(.Cdecl)]
private static extern Thread GetCurrentThreadNative();
void SetStart(Delegate start, int32 maxStackSize)
void SetStart(Delegate ownStartDelegate, int32 maxStackSize)
{
mDelegate = start;
mDelegate = ownStartDelegate;
mMaxStackSize = maxStackSize;
}