2
0

ChangeLog 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. 2002-12-10 Dick Porter <[email protected]>
  2. * Monitor.cs:
  3. * Thread.cs:
  4. * ThreadPool.cs:
  5. * Timer.cs:
  6. * WaitHandle.cs: Use TotalMilliseconds to convert a TimeSpan to
  7. ms, not Milliseconds.
  8. 2002-12-07 Martin Baulig <[email protected]>
  9. * Timer.cs: Make it actually work; now it no longer sets your
  10. application on fire if you use a zero periode and Timer.Change()
  11. actually works.
  12. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  13. * Timer.cs: implemented more stuff. It works now.
  14. 2002-10-25 Zoltan Varga <[email protected]>
  15. * Thread.cs: Implement GetDomain() and GetDomainID().
  16. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  17. * ThreadPool.cs: now the monitor thread is not sleeping and checking if
  18. more worker threads needed. It waits on _DataInQueue. If (and only if)
  19. there's data in the queue it checks if more worker threads needed and
  20. then sleeps 0.5s before waiting for queued data again.
  21. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  22. * ThreadPool.cs: set IsThreadPoolThread before starting the worker.
  23. 2002-09-11 Dick Porter <[email protected]>
  24. * Mutex.cs:
  25. * ManualResetEvent.cs:
  26. * AutoResetEvent.cs: Use the WaitHandle.Handle property instead of
  27. the private field
  28. * WaitHandle.cs: Hide the os_handle field and the WaitOne_internal
  29. method
  30. 2002-09-03 Dick Porter <[email protected]>
  31. * Thread.cs: Added thread ID field
  32. 2002-08-27 Gonzalo Paniagua Javier <[email protected]>
  33. * WaitHandle.cs: IDisposable fixes.
  34. 2002-08-14 Dick Porter <[email protected]>
  35. * Thread.cs: Make CurrentUICulture act the same as CurrentCulture
  36. for now.
  37. 2002-08-12 Dietmar Maurer <[email protected]>
  38. * ThreadAbortException.cs: impl. ExceptionState property.
  39. * Thread.cs: moved all instance variables to the start of the
  40. class. added support for Thread::Abort()
  41. 2002-04-30 Dick Porter <[email protected]>
  42. * Thread.cs: If LocalDataStoreSlot already has data set, remove it
  43. before adding a new one.
  44. Use the Thread object destructor to tell the runtime to close the
  45. thread handle.
  46. 2002-04-14 Patrik Torstensson <[email protected]>
  47. * Interlocked.cs: made all methods icalls.
  48. 2002-04-14 Gonzalo Paniagua Javier <[email protected]>
  49. * IOCompletionCallback.cs: added attributes to the delegate
  50. (CLSCompliant(false) and Serializable).
  51. 2002-04-14 Patrik Torstensson <[email protected]>
  52. * Thread.cs: Fixed IsThreadPoolThread to use a internal property instead of extending
  53. the threadstate enum.
  54. * ThreadPool.cs: Now using the internal Isthreadpoolthread property
  55. * ThreadState.cs: removed non-standard enum (ThreadPoolThread)
  56. 2002-04-14 Patrik Torstensson <[email protected]>
  57. * ThreadState.cs: Added enum for threadpool thread
  58. * Thread.cs: changed the set/clr_state to be internal (used from threadpool)
  59. * Thread.cs: Added IsThreadPoolThread
  60. * ThreadPool.cs: Implementation of QueueUserWorkItem
  61. Wed Feb 13 21:51:30 CET 2002 Paolo Molaro <[email protected]>
  62. * Thread.cs: implement CurrentCulture property needed by
  63. Convert.ChangeType() (used when compiling enums).
  64. 2002-01-23 Dick Porter <[email protected]>
  65. * ManualResetEvent.cs:
  66. * AutoResetEvent.cs: Fixed DOS line endings
  67. 2002-01-22 Veronica De Santis <[email protected]>
  68. * NativeEventCalls : Class that contains internal calls shared by Auto
  69. and Manual Reset Events
  70. * AutoResetEvents.cs : Added class AutoResetEvents and its implementation
  71. * ManualResetEvents.cs : Added class ManualResetEvents and its implementation
  72. 2002-01-16 Veronica De Santis <[email protected]>
  73. * WaitHandle.cs : Renamed handle to os_handle and make it protected
  74. instead of private.
  75. * Mutex.cs : Write the System.Threading.Mutex methods ( constructors
  76. and the ReleaseMutex)
  77. 2002-01-15 Dick Porter <[email protected]>
  78. * WaitHandle.cs:
  79. * Thread.cs: Make the runtime's idea of infinite timeouts coincide
  80. with the class library's
  81. 2002-01-10 Dick Porter <[email protected]>
  82. * WaitHandle.cs: Added checks for too many handles and null
  83. handles in WaitAll() and WaitAny
  84. 2002-01-05 Ravi Pratap <[email protected]>
  85. * AutoResetEvent.cs, ManualResetEvent.cs, Monitor.cs : MonoTODO
  86. decoration.
  87. * Mutex.cs, Overlapped.cs, ReaderWriterLock.cs, RegisteredWaitHandle.cs,
  88. Thread.cs, ThreadAbortException.cs, ThreadPool.cs, Timer.cs, WaitHandler.cs : Ditto.
  89. 2001-12-11 Dick Porter <[email protected]>
  90. * WaitHandle.cs: Implemented WaitAll(), WaitAny() and WaitOne() as
  91. internal calls.
  92. 2001-11-26 Dick Porter <[email protected]>
  93. * Thread.cs: DataSlot uses a single system TLS slot, and a
  94. hashtable per thread. Some minor changes to reflect the new
  95. internal calls using the new IO library, and the newly-supported
  96. bool returns from internal calls.
  97. * Monitor.cs: Use bool returns from internal calls now they are
  98. supported by the runtime. Coalesce enter with the try_enter
  99. internal call.
  100. Wed Nov 14 17:06:18 CET 2001 Paolo Molaro <[email protected]>
  101. * Overlapped.cs, ThreadPool.cs, Timer.cs: CLSCompliant updates.
  102. 2001-10-03 Dick Porter <[email protected]>
  103. * Monitor.cs: Implemented all methods except the two Wait()
  104. methods that take boolean parameters
  105. 2001-09-28 Dick Porter <[email protected]>
  106. * Thread.cs: Implemented AllocateDataSlot(),
  107. AllocateNamedDataSlot(), FreeNamedDataSlot(), GetData(),
  108. GetNamedDataSlot(), SetData(), IsBackground. Reworked Thread()
  109. and Start() to avoid a race condition. Added thread-safe state
  110. changing private operations.
  111. * Monitor.cs: Comment out the GetType() calls because it isn't implemented yet
  112. 2001-09-25 Dick Porter <[email protected]>
  113. * Thread.cs: Implement Join and timed Join, set correct state
  114. around Start, Join and Sleep calls, implement IsAlive and
  115. ThreadState properties.
  116. * ThreadState.cs (Threading): Added StopRequested,
  117. SuspendRequested, Suspended values
  118. 2001-09-23 Dick Porter <[email protected]>
  119. * Thread.cs: Implemented CurrentThread and Sleep (both versions)
  120. with internal calls, and Name.
  121. 2001-09-21 Dick Porter <[email protected]>
  122. * Thread.cs: Implement Thread(ThreadStart) constructor and Start()
  123. with an internal call
  124. * WaitHandle.cs: Close calls Dispose(false)
  125. 2001-09-13 Dick Porter <[email protected]>
  126. * ApartmentState.cs (Threading): Set the correct enum values
  127. 2001-09-13 Dick Porter <[email protected]>
  128. * ApartmentState.cs, AutoResetEvent.cs, IOCompletionCallback.cs,
  129. Interlocked.cs, LockCookie.cs, ManualResetEvent.cs, Monitor.cs,
  130. Mutex.cs, NativeOverlapped.cs, Overlapped.cs, ReaderWriterLock.cs,
  131. RegisteredWaitHandle.cs, SynchronizationLockException.cs,
  132. Thread.cs, ThreadAbortException.cs, ThreadInterruptedException.cs,
  133. ThreadPool.cs, ThreadStart.cs, ThreadStateException.cs,
  134. Timeout.cs, Timer.cs, TimerCallback.cs, WaitCallback.cs,
  135. WaitHandle.cs, WaitOrTimerCallback.cs: System.Threading class
  136. stubs.
  137. 2001-07-18 Michael Lambert <[email protected]>
  138. * ThreadPriority.cs, ThreadState.cs: Add.