ChangeLog 6.2 KB

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