ChangeLog 7.3 KB

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