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:
parent
0a6949a7d0
commit
7f0a81b5b3
2 changed files with 9 additions and 9 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue