forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIReJIT.cs
More file actions
29 lines (20 loc) · 725 Bytes
/
Copy pathIReJIT.cs
File metadata and controls
29 lines (20 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
namespace Microsoft.Diagnostics.DataContractReader.Contracts;
public enum RejitState
{
Requested,
Active
}
public interface IReJIT : IContract
{
static string IContract.Name { get; } = nameof(ReJIT);
bool IsEnabled() => throw new NotImplementedException();
RejitState GetRejitState(ILCodeVersionHandle codeVersionHandle) => throw new NotImplementedException();
TargetNUInt GetRejitId(ILCodeVersionHandle codeVersionHandle) => throw new NotImplementedException();
}
public readonly struct ReJIT : IReJIT
{
}