Add missing finalizer
[mono.git] / mcs / class / corlib / System.Threading.Tasks /
2011-09-01 Marek SafarAdd missing finalizer
2011-09-01 Marek SafarMake Task debugging more pleasant
2011-08-28 Jérémie LavalDo not set WaitingToRun status when trying to run synch...
2011-08-28 Jérémie LavalCheck and throw if a task reportedly executed isn't...
2011-08-28 Jérémie LavalCheck that CancellationToken coming from OperationCance...
2011-08-24 Marek SafarCheck TaskFactory continuation options
2011-08-20 Jérémie LavalSplit internal types in their own files
2011-08-20 Jérémie LavalThrow when a non-finished task is started
2011-08-20 Jérémie LavalMake TaskCompletionSource methods thread-safe
2011-08-20 Jérémie LavalMove old default task scheduler to Mono.Parallel
2011-08-20 Jérémie LavalRevert "Remove the old PFX Scheduler from the build"
2011-08-20 Miguel de IcazaRemove the old PFX Scheduler from the build
2011-08-19 Marek SafarSplit TaskFactory.cs file
2011-08-19 Marek SafarTaskCompletionSource.SetException cannot be used with...
2011-08-17 Jérémie LavalFix coding style
2011-08-16 Jérémie LavalCorrectly check TaskCreationOptions upper bound
2011-08-10 Jérémie LavalAvoid creating a delegate instance in general case...
2011-08-06 Jérémie LavalImplement proper ctor parameter checking
2011-08-05 Jérémie LavalFix for #162
2011-08-05 Miguel de IcazaMerge pull request #129 from grumpydev/CryptoFixo
2011-08-05 Miguel de IcazaMerge pull request #138 from eisnerd/bug-winforms-datag...
2011-08-05 Miguel de IcazaMerge pull request #141 from LogosBible/surrogtate
2011-08-02 Atsushi EnoMerge pull request #143 from mistoll/master
2011-07-28 Miguel de IcazaMerge pull request #93 from konrad-kruczynski/dispatche...
2011-07-28 Miguel de IcazaMerge pull request #136 from spencerhakim/master
2011-07-28 Miguel de IcazaMerge pull request #139 from HorstKakuschke/master
2011-07-27 Jérémie LavalEnsure that Task is in a correct initial state before...
2011-07-27 Jérémie LavalAllow using a worker number that is greater than Enviro...
2011-06-24 Gonzalo Paniagua... Merge pull request #121 from LogosBible/processfixes
2011-06-09 Jérémie LavalPotential fix for #690944
2011-06-09 Jérémie LavalSetup status and scheduler correctly when calling RunSy...
2011-05-26 Marek SafarAdd more async infrastructure
2011-05-20 Marek SafarRename Task<T> implementation file
2011-03-30 Marek SafarFew 4.0 profile corcompare changes
2011-03-21 Neale FergusonMerge branch 'master' of github.com:mono/mono
2011-03-21 Jérémie LavalRevert fcbb5717c18ff8393f2300a254bb13e6fab9c7e4 and...
2011-03-21 Jérémie LavalRegister exceptions happening in child tasks when attac...
2011-03-21 Jérémie LavalAdd a memory barrier so that exception is strictly...
2011-03-21 Jérémie LavalTiny style fix
2011-03-19 Miguel de IcazaFix build
2011-03-18 Rafael MuniticMust pass null to overloaded constructor instead of...
2011-03-18 Rafael MuniticIf the function is null Wait will not get called and...
2011-03-18 Rafael MuniticContinuation options should be checked as flags
2011-03-17 Neale FergusonMerge branch 'master' of github.com:mono/mono
2011-03-16 Koushik DuttaFix bug where if a task is Start-ed with a specific...
2011-03-16 Jérémie LavalCorrectly implement enumerating CyclicDequeue.
2011-03-14 Mark ProbstMerge branch 'sgen-disable-gc'
2011-03-14 Jérémie LavalDon't throw an exception when task array is empty in...
2011-03-01 Neale FergusonMerge branch 'master' of github.com:mono/mono
2011-02-25 Geoff NortonFix the mobile build
2011-02-17 Jérémie LavalAllow people to optionally fallback to the old schedule...
2011-02-17 Jérémie LavalRemove ctors in TpScheduler
2011-02-17 Jérémie LavalMake TryExecuteTaskInline a bit smarter
2011-02-17 Jérémie LavalRefactor common code block of TpScheduler and SyncConte...
2011-02-17 Jérémie LavalKill old IScheduler interface.
2011-02-17 Jérémie LavalWhen finding best worker number in Parallel loops use...
2011-02-17 Jérémie LavalAdapt TpScheduler to the new API in TaskScheduler
2011-02-17 Jérémie LavalCache callback delegate in TpScheduler when passing...
2011-02-17 Jérémie LavalDon't create a new lambda everytime when queuing Task...
2011-02-17 Jérémie LavalTry to execute task inline when they are ready to run...
2011-02-17 Jérémie LavalThreadpool Task scheduler
2011-02-16 Jb Evainfix the mobile build
2011-02-16 Jérémie LavalTrack what task is currently executed by a ThreadWorker...
2011-02-16 Jérémie LavalImplement properly TaskScheduler's FromCurrentSynchroni...
2011-02-15 Jérémie LavalImplement TaskFactory.FromAsync
2011-02-13 Mark ProbstMerge branch 'bugfix-main-thread-root'
2011-02-02 Jérémie LavalSteal more agressively once we have found a potential...
2011-02-02 Jérémie LavalMove call to Set a bit higher to avoid calling them...
2011-02-02 Jérémie LavalAdjust some ThreadWorker constants
2011-02-02 Jérémie LavalDon't reset ThreadWorker event when it's not needed
2011-02-02 Jérémie LavalAvoid wrapping task body given as Action into Action...
2011-02-02 Jérémie LavalAlso check directly Task.IsCompleted when we are waiting
2011-02-02 Jérémie LavalCache ChildWorkAdder delegate object in ThreadWorker
2011-02-02 Jérémie LavalLazy creation of the continuation queue in Task
2011-02-02 Jérémie LavalInline read and write calls in CyclicDeque
2011-02-02 Jérémie LavalMake some CyclicDeque operation faster
2011-02-01 Jérémie LavalAdapt Parallel.For stealing to all processor flavors
2011-01-31 Jb Evainunbreak the build
2011-01-27 Jérémie LavalWorkaround stealing failure by disabling it in 32bits
2011-01-25 Geoff NortonAdd pfx to the mobile profile
2011-01-24 Mark ProbstMerge branch 'sgen-android'
2011-01-24 Jérémie LavalAdd a quirk for Parallel.For stealing
2011-01-24 Jérémie LavalSanitize parent-child relation in continuations
2011-01-24 Jérémie LavalDon't put back stuff in the shared work pool when walki...
2011-01-24 Jérémie LavalDon't execute self task so ravenously when waiting
2011-01-24 Jérémie LavalMake sure a synchronous continuation get executed synch...
2011-01-21 Jérémie LavalAdd a last resort mode to ThreadWorker participative...
2011-01-21 Jérémie LavalAllow multiple invocation of Task Execute method to...
2011-01-21 Jérémie LavalThrow when trying to ExecuteSynchronously a task that...
2011-01-20 Jérémie LavalBackport stealing fixups to Parallel.For
2011-01-18 Jérémie LavalExpose ThreadWorker fields
2011-01-18 Jérémie LavalFix Task.Wait timeout regression
2011-01-18 Jérémie LavalExpose ThreadWorker in Mono.Parallel
2011-01-18 Jérémie LavalAdd support for external ParticipateUntil method call...
2011-01-14 Jérémie LavalMake use of the wait changes in the internal TaskSchedu...
2011-01-14 Jérémie LavalInternal ThreadWorker deque creation is now delegated...
2011-01-13 Jérémie LavalAdd CyclicDeque and doc
2011-01-13 Jérémie LavalRework internal wait mechanism in thread workers partic...
2011-01-13 Jérémie LavalUse more modern method in older Task code path
2011-01-13 Jérémie LavalFix continuation not being scheduled because of too...
next