Ignore:
Timestamp:
Mar 24, 2008, 3:59:07 AM (16 years ago)
Author:
NoWest
Message:

ThreadクラスをThreading名前空間に移動、及びThreadStateプロパティの実装。
1・整合性のためにgcを修正。
2・Abortの実装を検討中であるが対象スレッドに例外を発生させるメカニズムが
まだ、よく分からないうちに弄るのは危険と判断。もう少し動作を追ってからにする

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/system/gc.sbp

    r490 r495  
    156156
    157157        ' スレッド管理用オブジェクトを生成
    158         _System_pobj_AllThreads = New Detail._System_CThreadCollection()
     158        _System_pobj_AllThreads = New System.Threading.Detail._System_CThreadCollection()
    159159
    160160        ' 自身のThreadオブジェクトを生成
    161         Dim thread = New Thread(hTargetThread, GetCurrentThreadId(), 0)
     161        Dim thread = New System.Threading.Thread(hTargetThread, GetCurrentThreadId(), 0)
    162162        thread.Name = "main"
    163163
Note: See TracChangeset for help on using the changeset viewer.