ChangeLog 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. 2004-03-21 Gonzalo Paniagua Javier <[email protected]>
  2. * ThreadAbortException.cs: use same HResult as MS.
  3. * Timer.cs: abort the running thread when disposing the Timer. This
  4. fixes NullRefs when finishing xsp.
  5. 2004-03-15 Gonzalo Paniagua Javier <[email protected]>
  6. * NativeOverlapped.cs: added 2 new internal fields.
  7. * Overlapped.cs: implemented, but it's not used.
  8. * ThreadPool.cs: implemented BindHandle.
  9. 2004-03-08 Zoltan Varga <[email protected]>
  10. * Timer.cs (Dispose): Applied patch from Jaroslaw Kowalski
  11. ([email protected]). Fix finalization problems during appdomain unload.
  12. 2004-02-23 Jackson Harper <[email protected]>
  13. * LockCookie.cs: Add some fields for restoring locks.
  14. * ReaderWriterLock.cs: Implement
  15. * LockQueue.cs: New File - used for queueing thread locks in
  16. ReaderWriterLock.
  17. 2004-02-19 Jackson Harper <[email protected]>
  18. * Monitor.cs: Fix spelleng.
  19. 2004-02-09 Zoltan Varga <[email protected]>
  20. * Thread.cs: Add fields added to unmanaged MonoThread here as well.
  21. Fixes random errors caused by memory corruption.
  22. 2004-02-06 Zoltan Varga <[email protected]>
  23. * Thread.cs: Store the thread name in unmanaged memory, since the
  24. thread object is shared between appdomains.
  25. 2004-02-05 Sebastien Pouliot <[email protected]>
  26. * Thread.cs: Implemented CurrentPrincipal.
  27. 2004-01-22 Gonzalo Paniagua Javier <[email protected]>
  28. * Thread.cs: delayed thread creation until Start is called. If we
  29. don't do that and Start() is not called, the thread is leaked. First
  30. step towards fixing bug #53078.
  31. 2003-12-02 Dick Porter <[email protected]>
  32. * Thread.cs: Throw InvalidOperationException if Thread.Name is
  33. already set.
  34. 2003-12-01 Dick Porter <[email protected]>
  35. * Thread.cs: Implement CurrentCulture and CurrentUICulture
  36. 2003-11-12 Miguel de Icaza <[email protected]>
  37. * Thread.cs: Add new VolatileRead/VolatileWrite methods from 1.1
  38. 2003-10-23 Lluis Sanchez Gual <[email protected]>
  39. * Thread.cs: Added ResetDataStoreStatus and RestoreDataStoreStatus
  40. methods. They are used in CrossAppDomainChannel to save and restore
  41. thread's local data when switching between domains.
  42. 2003-10-08 Gonzalo Paniagua Javier <[email protected]>
  43. * ManualResetEvent.cs: added check for disposed.
  44. * Thread.cs: no need to init this field.
  45. 2003-10-01 Zoltan Varga <[email protected]>
  46. * Thread.cs: Add locking to AllocateNamedDataSlot and
  47. FreeNamedDataSlot.
  48. Wed Aug 20 12:01:36 CEST 2003 Paolo Molaro <[email protected]>
  49. * Thread.cs: put all the fields at the start and add
  50. more fields needed by the runtime.
  51. 2003-08-14 Lluis Sanchez Gual <[email protected]>
  52. * Thread.cs: SetData() method: use Hashtable.Contains to check
  53. if a dataslot has been allocated (value could be null).
  54. 2003-07-23 Duncan Mak <[email protected]>
  55. * WaitHandle.cs (CheckDisposed): This method is not in the public
  56. API, mark it as 'internal'.
  57. 2003-07-01 Dick Porter <[email protected]>
  58. * Thread.cs: Throw an exception if thread creation failed.
  59. (Better than just blowing up later.)
  60. 2003-06-27 Dietmar Maurer <[email protected]>
  61. * ThreadPool.cs: use async delegate invoke.
  62. 2003-06-25 Dick Porter <[email protected]>
  63. * WaitHandle.cs: Default handle value should be InvalidHandle, not
  64. Zero.
  65. 2003-06-21 Gonzalo Paniagua Javier <[email protected]>
  66. * ThreadPool.cs: correctly create a TimeSpan with provided the number of
  67. milliseconds.
  68. * WaitHandle.cs: fixes for WaitAny/All and TimeSpan.
  69. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  70. * WaitHandle.cs: checks and exceptions.
  71. 2003-06-02 Gonzalo Paniagua Javier <[email protected]>
  72. * NativeEventCalls.cs: added CloseEvent_intenal.
  73. * WaitHandle.cs: call CloseEvent_internal when disposing.
  74. 2003-05-31 Gonzalo Paniagua Javier <[email protected]>
  75. * RegisteredWaitHandle.cs: check that the callback is not null before
  76. invoking.
  77. * ThreadPool.cs: fixed timeout -> TimeSpan conversions (closes bug
  78. #43963). Queue the item before setting the handle. If there's a timeout,
  79. avoid trying to Dequeue, getting the exception et al, just continue the
  80. loop.
  81. Mon May 19 09:07:45 CEST 2003 Paolo Molaro <[email protected]>
  82. * Monitor.cs: removed test_owner, the check is already done in the
  83. icall.
  84. Tue May 13 15:34:29 CEST 2003 Paolo Molaro <[email protected]>
  85. * Thread.cs: added missing field used by the runtime and
  86. a new field to support thread-static data.
  87. 2003-04-17 Pedro Martínez Juliá <[email protected]>
  88. * Timer.cs: Change the position of two lines because they were
  89. before the "if" that ensures the integrity. After this, the first of
  90. that two lines was producing a NullReferenceException.
  91. 2003-04-09 Dick Porter <[email protected]>
  92. * Thread.cs: Make sure a reference to the ThreadStart delegate is
  93. held. There's no telling how long it will be before
  94. Thread.Start() is called, and GC might destroy the delegate.
  95. Thread() and Start() need to be rewritten so that the runtime
  96. creates the new thread when Start() is called, which will simplify
  97. the code a great deal.
  98. 2003-03-20 Miguel de Icaza <[email protected]>
  99. * Thread.cs (CurrentCuluture): use the invaraint culture instead
  100. of "" for the current_culture setting.
  101. 2003-03-25 Zoltan Varga <[email protected]>
  102. * Thread.cs: Fix visibility of ResetAbort().
  103. 2003-03-18 Dick Porter <[email protected]>
  104. * Thread.cs: Keep the thread state updated in all the places that
  105. require it. (Suspend, Resume and Interrupt not handled yet)
  106. 2003-03-03 Lluis Sanchez Gual <[email protected]>
  107. * Thread.cs: Changed implementation of CurrentContext, adapted to the changes
  108. in the runtime.
  109. 2003-02-19 Gonzalo Paniagua Javier <[email protected]>
  110. * Thread.cs: implemented CurrentContext.
  111. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  112. * Thread.cs: made the thread_id for the current thread accesible through
  113. an internal property.
  114. 2003-02-17 Dick Porter <[email protected]>
  115. * Thread.cs: Added the Start semaphore field to the class. Update
  116. the thread state after Start() has returned, not before.
  117. 2003-02-13 Zoltan Varga <[email protected]>
  118. * Thread.cs (Sleep): Timeout.Infinite is a value argument.
  119. 2003-02-11 Dick Porter <[email protected]>
  120. * Monitor.cs: Infinite wait is Infinite, not 0 ms
  121. 2003-02-10 Gonzalo Paniagua Javier <[email protected]>
  122. * Thread.cs: fixed bug #37759.
  123. 2003-02-07 Patrik Torstensson
  124. * Timer.cs: Set the Background thread flag for the timer thread
  125. 2003-02-05 Patrik Torstensson
  126. * ThreadPool.cs: Reformated and fixed issue that made all thread exit the pool.
  127. 2003-02-04 Lluis Sanchez Gual <[email protected]>
  128. * ThreadPool.cs: Implemented RegisterWaitForSingleObject methods.
  129. Tue Jan 28 17:55:59 CET 2003 Paolo Molaro <[email protected]>
  130. * Thread.cs: delay-init datastorehash.
  131. 2003-01-10 Patrik Torstensson <[email protected]>
  132. * ThreadPool.cs: Temporary removed the usage of monitor thread, implemented a
  133. model more equal to the MS one.
  134. 2002-12-10 Dick Porter <[email protected]>
  135. * Monitor.cs:
  136. * Thread.cs:
  137. * ThreadPool.cs:
  138. * Timer.cs:
  139. * WaitHandle.cs: Use TotalMilliseconds to convert a TimeSpan to
  140. ms, not Milliseconds.
  141. 2002-12-07 Martin Baulig <[email protected]>
  142. * Timer.cs: Make it actually work; now it no longer sets your
  143. application on fire if you use a zero periode and Timer.Change()
  144. actually works.
  145. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  146. * Timer.cs: implemented more stuff. It works now.
  147. 2002-10-25 Zoltan Varga <[email protected]>
  148. * Thread.cs: Implement GetDomain() and GetDomainID().
  149. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  150. * ThreadPool.cs: now the monitor thread is not sleeping and checking if
  151. more worker threads needed. It waits on _DataInQueue. If (and only if)
  152. there's data in the queue it checks if more worker threads needed and
  153. then sleeps 0.5s before waiting for queued data again.
  154. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  155. * ThreadPool.cs: set IsThreadPoolThread before starting the worker.
  156. 2002-09-11 Dick Porter <[email protected]>
  157. * Mutex.cs:
  158. * ManualResetEvent.cs:
  159. * AutoResetEvent.cs: Use the WaitHandle.Handle property instead of
  160. the private field
  161. * WaitHandle.cs: Hide the os_handle field and the WaitOne_internal
  162. method
  163. 2002-09-03 Dick Porter <[email protected]>
  164. * Thread.cs: Added thread ID field
  165. 2002-08-27 Gonzalo Paniagua Javier <[email protected]>
  166. * WaitHandle.cs: IDisposable fixes.
  167. 2002-08-14 Dick Porter <[email protected]>
  168. * Thread.cs: Make CurrentUICulture act the same as CurrentCulture
  169. for now.
  170. 2002-08-12 Dietmar Maurer <[email protected]>
  171. * ThreadAbortException.cs: impl. ExceptionState property.
  172. * Thread.cs: moved all instance variables to the start of the
  173. class. added support for Thread::Abort()
  174. 2002-04-30 Dick Porter <[email protected]>
  175. * Thread.cs: If LocalDataStoreSlot already has data set, remove it
  176. before adding a new one.
  177. Use the Thread object destructor to tell the runtime to close the
  178. thread handle.
  179. 2002-04-14 Patrik Torstensson <[email protected]>
  180. * Interlocked.cs: made all methods icalls.
  181. 2002-04-14 Gonzalo Paniagua Javier <[email protected]>
  182. * IOCompletionCallback.cs: added attributes to the delegate
  183. (CLSCompliant(false) and Serializable).
  184. 2002-04-14 Patrik Torstensson <[email protected]>
  185. * Thread.cs: Fixed IsThreadPoolThread to use a internal property instead of extending
  186. the threadstate enum.
  187. * ThreadPool.cs: Now using the internal Isthreadpoolthread property
  188. * ThreadState.cs: removed non-standard enum (ThreadPoolThread)
  189. 2002-04-14 Patrik Torstensson <[email protected]>
  190. * ThreadState.cs: Added enum for threadpool thread
  191. * Thread.cs: changed the set/clr_state to be internal (used from threadpool)
  192. * Thread.cs: Added IsThreadPoolThread
  193. * ThreadPool.cs: Implementation of QueueUserWorkItem
  194. Wed Feb 13 21:51:30 CET 2002 Paolo Molaro <[email protected]>
  195. * Thread.cs: implement CurrentCulture property needed by
  196. Convert.ChangeType() (used when compiling enums).
  197. 2002-01-23 Dick Porter <[email protected]>
  198. * ManualResetEvent.cs:
  199. * AutoResetEvent.cs: Fixed DOS line endings
  200. 2002-01-22 Veronica De Santis <[email protected]>
  201. * NativeEventCalls : Class that contains internal calls shared by Auto
  202. and Manual Reset Events
  203. * AutoResetEvents.cs : Added class AutoResetEvents and its implementation
  204. * ManualResetEvents.cs : Added class ManualResetEvents and its implementation
  205. 2002-01-16 Veronica De Santis <[email protected]>
  206. * WaitHandle.cs : Renamed handle to os_handle and make it protected
  207. instead of private.
  208. * Mutex.cs : Write the System.Threading.Mutex methods ( constructors
  209. and the ReleaseMutex)
  210. 2002-01-15 Dick Porter <[email protected]>
  211. * WaitHandle.cs:
  212. * Thread.cs: Make the runtime's idea of infinite timeouts coincide
  213. with the class library's
  214. 2002-01-10 Dick Porter <[email protected]>
  215. * WaitHandle.cs: Added checks for too many handles and null
  216. handles in WaitAll() and WaitAny
  217. 2002-01-05 Ravi Pratap <[email protected]>
  218. * AutoResetEvent.cs, ManualResetEvent.cs, Monitor.cs : MonoTODO
  219. decoration.
  220. * Mutex.cs, Overlapped.cs, ReaderWriterLock.cs, RegisteredWaitHandle.cs,
  221. Thread.cs, ThreadAbortException.cs, ThreadPool.cs, Timer.cs, WaitHandler.cs : Ditto.
  222. 2001-12-11 Dick Porter <[email protected]>
  223. * WaitHandle.cs: Implemented WaitAll(), WaitAny() and WaitOne() as
  224. internal calls.
  225. 2001-11-26 Dick Porter <[email protected]>
  226. * Thread.cs: DataSlot uses a single system TLS slot, and a
  227. hashtable per thread. Some minor changes to reflect the new
  228. internal calls using the new IO library, and the newly-supported
  229. bool returns from internal calls.
  230. * Monitor.cs: Use bool returns from internal calls now they are
  231. supported by the runtime. Coalesce enter with the try_enter
  232. internal call.
  233. Wed Nov 14 17:06:18 CET 2001 Paolo Molaro <[email protected]>
  234. * Overlapped.cs, ThreadPool.cs, Timer.cs: CLSCompliant updates.
  235. 2001-10-03 Dick Porter <[email protected]>
  236. * Monitor.cs: Implemented all methods except the two Wait()
  237. methods that take boolean parameters
  238. 2001-09-28 Dick Porter <[email protected]>
  239. * Thread.cs: Implemented AllocateDataSlot(),
  240. AllocateNamedDataSlot(), FreeNamedDataSlot(), GetData(),
  241. GetNamedDataSlot(), SetData(), IsBackground. Reworked Thread()
  242. and Start() to avoid a race condition. Added thread-safe state
  243. changing private operations.
  244. * Monitor.cs: Comment out the GetType() calls because it isn't implemented yet
  245. 2001-09-25 Dick Porter <[email protected]>
  246. * Thread.cs: Implement Join and timed Join, set correct state
  247. around Start, Join and Sleep calls, implement IsAlive and
  248. ThreadState properties.
  249. * ThreadState.cs (Threading): Added StopRequested,
  250. SuspendRequested, Suspended values
  251. 2001-09-23 Dick Porter <[email protected]>
  252. * Thread.cs: Implemented CurrentThread and Sleep (both versions)
  253. with internal calls, and Name.
  254. 2001-09-21 Dick Porter <[email protected]>
  255. * Thread.cs: Implement Thread(ThreadStart) constructor and Start()
  256. with an internal call
  257. * WaitHandle.cs: Close calls Dispose(false)
  258. 2001-09-13 Dick Porter <[email protected]>
  259. * ApartmentState.cs (Threading): Set the correct enum values
  260. 2001-09-13 Dick Porter <[email protected]>
  261. * ApartmentState.cs, AutoResetEvent.cs, IOCompletionCallback.cs,
  262. Interlocked.cs, LockCookie.cs, ManualResetEvent.cs, Monitor.cs,
  263. Mutex.cs, NativeOverlapped.cs, Overlapped.cs, ReaderWriterLock.cs,
  264. RegisteredWaitHandle.cs, SynchronizationLockException.cs,
  265. Thread.cs, ThreadAbortException.cs, ThreadInterruptedException.cs,
  266. ThreadPool.cs, ThreadStart.cs, ThreadStateException.cs,
  267. Timeout.cs, Timer.cs, TimerCallback.cs, WaitCallback.cs,
  268. WaitHandle.cs, WaitOrTimerCallback.cs: System.Threading class
  269. stubs.
  270. 2001-07-18 Michael Lambert <[email protected]>
  271. * ThreadPriority.cs, ThreadState.cs: Add.