Changeset 430 for trunk/Include/Classes


Ignore:
Timestamp:
Feb 26, 2008, 6:34:53 PM (16 years ago)
Author:
NoWest
Message:

CreateWaitHandleメソッドをManualResetEventを返すように実装。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/Classes/System/IO/FileStream.ab

    r426 r430  
    451451Protected
    452452    Override Function CreateWaitHandle() As System.Threading.WaitHandle
    453         '調査した限りでは、System.Threading.EventWaitHandleクラスをNewする模様。
    454         '現状ではSystem.Threading.WaitHandleクラスをNewしてからHandleにて設定
    455         Dim wh As System.Threading.WaitHandle
    456         wh.Handle=CreateEvent(NULL,TRUE,FALSE,NULL)
    457         Return wh
     453        Return New System.Threading.AutoResetEvent(False)
    458454    End Function
    459455
Note: See TracChangeset for help on using the changeset viewer.