dongxuying7583 2016-08-10 13:49
浏览 36
已采纳

golang调度程序如何在以下代码中调度goroutine?

package main

import (
    "fmt"
    "time"
    "runtime"
)

var quit chan int = make(chan int)

func loop(a int) {
    fmt.Println(a)
    for i := 0; i < 30000000000; i++ {
    }
    fmt.Println(a)
    quit <- 0
}

func main() {
    runtime.GOMAXPROCS(1)

    go loop(1)
    time.Sleep(time.Second)
    go loop(2)

    for i := 0; i < 2; i++ {
        <-quit
    }
}

For the scheduler model (M+P+G), I suppose we just have 1 cpu context because we set GOMAXPROCS as 1, and there is just 1 thread(M) here.

In the goroutine, the for loop do not has any IO blocking, so no new thread will be generated, all goroutine should still work in current thread, so I think the 2 goroutine must go one by one, thus, the result should be 1 1 2 2. But in fact, the result is 1 2 1 2. Why?

  • 写回答

1条回答 默认 最新

  • dounao4179 2016-08-10 14:55
    关注

    Here's the order of the relevant operations in your program.

    1. go loop(1) dispatches goroutine loop1
    2. time.Sleep(time.Second) starts in the main goroutine
    3. fmt.Println(a) called from loop1, prints 1
    4. loop1 enters busy loop and holds the CPU
    5. entry to fmt.Println(a) from loop1 yields to the scheduler
    6. main goroutine wakes up, finishes the time.Sleep call
    7. go loop(2) dispatches goroutine loop2
    8. fmt.Println(a) called from loop2, prints 2
    9. loop2 enters busy loop and holds the CPU
    10. entry to fmt.Println(a) from loop2 yields to the scheduler
    11. loop1 one wakes up and finishes fmt.Println(a), prints 1
    12. loop1 sends 0 over the quit channel
    13. loop2 finishes fmt.Println(a), prints 2
    14. loop2 sends 0 over the quit channel
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!