Skip to content

Commit

Permalink
Merge pull request #13 from yinheli/patch-1
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
suyuan32 authored Jun 11, 2024
2 parents fc5ec6c + 42f6d32 commit 71e97cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/guide/concepts/golang/20-gmp.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ GMP 模型是 Go 语言调度器的核心模型,它是 Go 语言调度器的

| **组件** | **描述** |
| ------------- | ---------------------------------------------------------------------------------------------- |
| G (Goroutime) | 表示一个 Goroutine,包含栈和相关的上下文信息 |
| G (Goroutine) | 表示一个 Goroutine,包含栈和相关的上下文信息 |
| M (Machine) | 表示一个执行线程,负责将 Goroutine 映射到操作系统的线程上。每个 M 都有自己的调用栈和寄存器状态 |
| P (Processor) | 表示一个逻辑处理器,维护一个处于可运行状态的 Goroutine 队列,每个 M 都和一个 P 相关联 |

Expand Down Expand Up @@ -159,4 +159,4 @@ GMP 模型是 Go 语言调度器的核心模型,它是 Go 语言调度器的
| G0 | `M0` 创建之后会立即创建一个 `G0` , 这个 `G0` 只用于调度 `G`, 不执行逻辑代码, `G0``M0` 对应 |


:::
:::

0 comments on commit 71e97cc

Please sign in to comment.