Moving StopWatch to `src\Common\src\Corelib` (dotnet/corefx#42072)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / Diagnostics / Stopwatch.Unix.cs
blob13beddde046dd0044e46aaa097fe04a6b198b9fc
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 namespace System.Diagnostics
7 public partial class Stopwatch
9 private static long QueryPerformanceFrequency()
11 return (long)Interop.Sys.GetTimestampResolution();
14 private static long QueryPerformanceCounter()
16 return (long)Interop.Sys.GetTimestamp();