Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mono/mono
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: koush/mono
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Mar 16, 2011

  1. Fix bug where if a task is Start-ed with a specific scheduler,

    that scheduler is ignored if it is in a thread owned by another
    scheduler. Tasks should not be locked to the scheduler that
    owns the calling thread.
    
    Fix bug where TryExecuteTask does not actually try to execute
    the task. Instead, TryExecuteTaskInline is called, which is
    abstract. The TpScheduler implementation, the default, then
    calls the internal method Task.Execute which then actually
    executes the task. The problem with this is that only 3rd
    party schedulers, can't actually execute a task, thus making
    extending TaskScheduler impossible. (Unless they use some
    serious Mono specific reflection hacks as I am now.)
    koush committed Mar 16, 2011
    Configuration menu
    Copy the full SHA
    59b6c5e View commit details
    Browse the repository at this point in the history
Loading