返回介绍

上卷 程序设计

中卷 标准库

下卷 运行时

源码剖析

附录

4.5.7 标准库函数

发布于 2024-10-12 19:16:06 字数 1478 浏览 0 评论 0 收藏 0

标准库 runtime 里与调度有关的几个函数。

Gosched

与 gopark 的区别在于:会被放回队列,无需 goready 唤醒。

// proc.go

// Gosched yields the processor, allowing other goroutines to run. It does not
// suspend the current goroutine, so execution resumes automatically.

func Gosched() {
    // mcall 会保存当前 G.sched,并将 G 做为 gosched_m 调用参数。
    mcall(gosched_m)
}
// Gosched continuation on g0.

func gosched_m(gp *g) {
    goschedImpl(gp)
}
func goschedImpl(gp *g) {
    
    // 切换状态,并解除 gp 和 MP 的关联。
    casgstatus(gp, _Grunning, _Grunnable)
    dropg()
    
    // 将 gp 放入全局队列,等待下次被调度执行。
    globrunqput(gp)
    
    // 当前 MP 调度其他任务。
    schedule()
}

Goexit

调用 goexit1,将当前 G 标记为 dead 状态,放回复用列表。

解除和 M 的关联,让其重新进入调度循环。

这意味着立即终止,不会再回到 G 执行,不理会调用堆栈。

在 main goroutine 里调用 Goexit,它会等待其他 goroutine 结束后才会崩溃。

// panic.go

// Goexit terminates the goroutine that calls it. No other goroutine is affected.
//
// Goexit runs all deferred calls before terminating the goroutine. Because Goexit
// is not a panic, any recover calls in those deferred functions will return nil.
//
// Calling Goexit from the main goroutine terminates that goroutine
// without func main returning. Since func main has not returned,
// the program continues execution of other goroutines.
// If all other goroutines exit, the program crashes.

func Goexit() {
    for {
        ...defer...
    }
    
    goexit1()
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文