6c9565693f
* Changes to allow explicit management of service threads * Remove now unused code * Remove ThreadCounter, its no longer needed * Allow and use separate server per service, also fix exit issues * New policy change: PTC version now uses PR number
12 lines
No EOL
260 B
C#
12 lines
No EOL
260 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
|
|
class CommandAttribute : Attribute
|
|
{
|
|
public readonly int Id;
|
|
|
|
public CommandAttribute(int id) => Id = id;
|
|
}
|
|
} |