ChangeLog 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. 2002-04-14 Gonzalo Paniagua Javier <[email protected]>
  2. * IOCompletionCallback.cs: added attributes to the delegate
  3. (CLSCompliant(false) and Serializable).
  4. 2002-04-14 Patrik Torstensson <[email protected]>
  5. * Thread.cs: Fixed IsThreadPoolThread to use a internal property instead of extending
  6. the threadstate enum.
  7. * ThreadPool.cs: Now using the internal Isthreadpoolthread property
  8. * ThreadState.cs: removed non-standard enum (ThreadPoolThread)
  9. 2002-04-14 Patrik Torstensson <[email protected]>
  10. * ThreadState.cs: Added enum for threadpool thread
  11. * Thread.cs: changed the set/clr_state to be internal (used from threadpool)
  12. * Thread.cs: Added IsThreadPoolThread
  13. * ThreadPool.cs: Implementation of QueueUserWorkItem
  14. Wed Feb 13 21:51:30 CET 2002 Paolo Molaro <[email protected]>
  15. * Thread.cs: implement CurrentCulture property needed by
  16. Convert.ChangeType() (used when compiling enums).
  17. 2002-01-23 Dick Porter <[email protected]>
  18. * ManualResetEvent.cs:
  19. * AutoResetEvent.cs: Fixed DOS line endings
  20. 2002-01-22 Veronica De Santis <[email protected]>
  21. * NativeEventCalls : Class that contains internal calls shared by Auto
  22. and Manual Reset Events
  23. * AutoResetEvents.cs : Added class AutoResetEvents and its implementation
  24. * ManualResetEvents.cs : Added class ManualResetEvents and its implementation
  25. 2002-01-16 Veronica De Santis <[email protected]>
  26. * WaitHandle.cs : Renamed handle to os_handle and make it protected
  27. instead of private.
  28. * Mutex.cs : Write the System.Threading.Mutex methods ( constructors
  29. and the ReleaseMutex)
  30. 2002-01-15 Dick Porter <[email protected]>
  31. * WaitHandle.cs:
  32. * Thread.cs: Make the runtime's idea of infinite timeouts coincide
  33. with the class library's
  34. 2002-01-10 Dick Porter <[email protected]>
  35. * WaitHandle.cs: Added checks for too many handles and null
  36. handles in WaitAll() and WaitAny
  37. 2002-01-05 Ravi Pratap <[email protected]>
  38. * AutoResetEvent.cs, ManualResetEvent.cs, Monitor.cs : MonoTODO
  39. decoration.
  40. * Mutex.cs, Overlapped.cs, ReaderWriterLock.cs, RegisteredWaitHandle.cs,
  41. Thread.cs, ThreadAbortException.cs, ThreadPool.cs, Timer.cs, WaitHandler.cs : Ditto.
  42. 2001-12-11 Dick Porter <[email protected]>
  43. * WaitHandle.cs: Implemented WaitAll(), WaitAny() and WaitOne() as
  44. internal calls.
  45. 2001-11-26 Dick Porter <[email protected]>
  46. * Thread.cs: DataSlot uses a single system TLS slot, and a
  47. hashtable per thread. Some minor changes to reflect the new
  48. internal calls using the new IO library, and the newly-supported
  49. bool returns from internal calls.
  50. * Monitor.cs: Use bool returns from internal calls now they are
  51. supported by the runtime. Coalesce enter with the try_enter
  52. internal call.
  53. Wed Nov 14 17:06:18 CET 2001 Paolo Molaro <[email protected]>
  54. * Overlapped.cs, ThreadPool.cs, Timer.cs: CLSCompliant updates.
  55. 2001-10-03 Dick Porter <[email protected]>
  56. * Monitor.cs: Implemented all methods except the two Wait()
  57. methods that take boolean parameters
  58. 2001-09-28 Dick Porter <[email protected]>
  59. * Thread.cs: Implemented AllocateDataSlot(),
  60. AllocateNamedDataSlot(), FreeNamedDataSlot(), GetData(),
  61. GetNamedDataSlot(), SetData(), IsBackground. Reworked Thread()
  62. and Start() to avoid a race condition. Added thread-safe state
  63. changing private operations.
  64. * Monitor.cs: Comment out the GetType() calls because it isn't implemented yet
  65. 2001-09-25 Dick Porter <[email protected]>
  66. * Thread.cs: Implement Join and timed Join, set correct state
  67. around Start, Join and Sleep calls, implement IsAlive and
  68. ThreadState properties.
  69. * ThreadState.cs (Threading): Added StopRequested,
  70. SuspendRequested, Suspended values
  71. 2001-09-23 Dick Porter <[email protected]>
  72. * Thread.cs: Implemented CurrentThread and Sleep (both versions)
  73. with internal calls, and Name.
  74. 2001-09-21 Dick Porter <[email protected]>
  75. * Thread.cs: Implement Thread(ThreadStart) constructor and Start()
  76. with an internal call
  77. * WaitHandle.cs: Close calls Dispose(false)
  78. 2001-09-13 Dick Porter <[email protected]>
  79. * ApartmentState.cs (Threading): Set the correct enum values
  80. 2001-09-13 Dick Porter <[email protected]>
  81. * ApartmentState.cs, AutoResetEvent.cs, IOCompletionCallback.cs,
  82. Interlocked.cs, LockCookie.cs, ManualResetEvent.cs, Monitor.cs,
  83. Mutex.cs, NativeOverlapped.cs, Overlapped.cs, ReaderWriterLock.cs,
  84. RegisteredWaitHandle.cs, SynchronizationLockException.cs,
  85. Thread.cs, ThreadAbortException.cs, ThreadInterruptedException.cs,
  86. ThreadPool.cs, ThreadStart.cs, ThreadStateException.cs,
  87. Timeout.cs, Timer.cs, TimerCallback.cs, WaitCallback.cs,
  88. WaitHandle.cs, WaitOrTimerCallback.cs: System.Threading class
  89. stubs.
  90. 2001-07-18 Michael Lambert <[email protected]>
  91. * ThreadPriority.cs, ThreadState.cs: Add.