mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Initial checkin
This commit is contained in:
parent
c74712dad9
commit
078564ac9e
3242 changed files with 1616395 additions and 0 deletions
25
IDE/mintest/minlib/src/System/Threading/Timeout.bf
Normal file
25
IDE/mintest/minlib/src/System/Threading/Timeout.bf
Normal file
|
@ -0,0 +1,25 @@
|
|||
// ==++==
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// ==--==
|
||||
//
|
||||
// <OWNER>[....]</OWNER>
|
||||
|
||||
namespace System.Threading {
|
||||
using System.Threading;
|
||||
using System;
|
||||
// A constant used by methods that take a timeout (Object.Wait, Thread.Sleep
|
||||
// etc) to indicate that no timeout should occur.
|
||||
//
|
||||
// <
|
||||
|
||||
public static class Timeout
|
||||
{
|
||||
//public static readonly TimeSpan InfiniteTimeSpan = TimeSpan(0, 0, 0, 0, Timeout.Infinite);
|
||||
|
||||
public const int32 Infinite = -1;
|
||||
internal const uint32 UnsignedInfinite = unchecked((uint32)-1);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue