@@ -46,7 +46,7 @@ internal enum ClassLibFunctionId
46
46
IDynamicCastableGetInterfaceImplementation = 9 ,
47
47
}
48
48
49
- internal static class InternalCalls
49
+ internal static partial class InternalCalls
50
50
{
51
51
//
52
52
// internalcalls for System.GC.
@@ -59,17 +59,19 @@ internal static void RhCollect(int generation, InternalGCCollectionMode mode)
59
59
RhpCollect ( generation , mode ) ;
60
60
}
61
61
62
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
63
- private static extern void RhpCollect ( int generation , InternalGCCollectionMode mode ) ;
62
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
63
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
64
+ private static partial void RhpCollect ( int generation , InternalGCCollectionMode mode ) ;
64
65
65
66
[ RuntimeExport ( "RhGetGcTotalMemory" ) ]
66
67
internal static long RhGetGcTotalMemory ( )
67
68
{
68
69
return RhpGetGcTotalMemory ( ) ;
69
70
}
70
71
71
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
72
- private static extern long RhpGetGcTotalMemory ( ) ;
72
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
73
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
74
+ private static partial long RhpGetGcTotalMemory ( ) ;
73
75
74
76
[ RuntimeExport ( "RhStartNoGCRegion" ) ]
75
77
internal static int RhStartNoGCRegion ( long totalSize , bool hasLohSize , long lohSize , bool disallowFullBlockingGC )
@@ -284,39 +286,49 @@ internal static extern unsafe bool RhpCallFilterFunclet(
284
286
285
287
// Block the current thread until at least one object needs to be finalized (returns true) or
286
288
// memory is low (returns false and the finalizer thread should initiate a garbage collection).
287
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
288
- internal static extern uint RhpWaitForFinalizerRequest ( ) ;
289
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
290
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
291
+ internal static partial uint RhpWaitForFinalizerRequest ( ) ;
289
292
290
293
// Indicate that the current round of finalizations is complete.
291
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
292
- internal static extern void RhpSignalFinalizationComplete ( ) ;
294
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
295
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
296
+ internal static partial void RhpSignalFinalizationComplete ( ) ;
293
297
294
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
295
- internal static extern void RhpAcquireCastCacheLock ( ) ;
298
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
299
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
300
+ internal static partial void RhpAcquireCastCacheLock ( ) ;
296
301
297
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
298
- internal static extern void RhpReleaseCastCacheLock ( ) ;
302
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
303
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
304
+ internal static partial void RhpReleaseCastCacheLock ( ) ;
299
305
300
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
301
- internal static extern ulong RhpGetTickCount64 ( ) ;
306
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
307
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
308
+ internal static partial ulong RhpGetTickCount64 ( ) ;
302
309
303
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
304
- internal static extern void RhpAcquireThunkPoolLock ( ) ;
310
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
311
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
312
+ internal static partial void RhpAcquireThunkPoolLock ( ) ;
305
313
306
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
307
- internal static extern void RhpReleaseThunkPoolLock ( ) ;
314
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
315
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
316
+ internal static partial void RhpReleaseThunkPoolLock ( ) ;
308
317
309
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
310
- internal static extern IntPtr RhAllocateThunksMapping ( ) ;
318
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
319
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
320
+ internal static partial IntPtr RhAllocateThunksMapping ( ) ;
311
321
312
322
// Enters a no GC region, possibly doing a blocking GC if there is not enough
313
323
// memory available to satisfy the caller's request.
314
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
315
- internal static extern int RhpStartNoGCRegion ( long totalSize , bool hasLohSize , long lohSize , bool disallowFullBlockingGC ) ;
324
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
325
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
326
+ internal static partial int RhpStartNoGCRegion ( long totalSize , bool hasLohSize , long lohSize , bool disallowFullBlockingGC ) ;
316
327
317
328
// Exits a no GC region, possibly doing a GC to clean up the garbage that
318
329
// the caller allocated.
319
- [ DllImport ( Redhawk . BaseName , CallingConvention = CallingConvention . Cdecl ) ]
320
- internal static extern int RhpEndNoGCRegion ( ) ;
330
+ [ GeneratedDllImport ( Redhawk . BaseName ) ]
331
+ [ UnmanagedCallConv ( CallConvs = new Type [ ] { typeof ( CallConvCdecl ) } ) ]
332
+ internal static partial int RhpEndNoGCRegion ( ) ;
321
333
}
322
334
}
0 commit comments