ChangeLog 4.8 KB

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