- Mastering Linux Kernel Development
- Raghu Bharadwaj
- 86字
- 2021-07-08 09:47:14
tgid
This field contains the thread group id. For easy understanding, let's say when a new process is created, its PID and TGID are the same, as the process happens to be the only thread. When the process spawns a new thread, the new child gets a unique PID but inherits the TGID from the parent, as it belongs to the same thread group. The TGID is primarily used to support multi-threaded process. We will delve into further details in the threads section of this chapter.
推薦閱讀
- Oracle從新手到高手
- Java應用開發與實踐
- Java游戲服務器架構實戰
- Data Analysis with Stata
- QTP自動化測試進階
- 單片機應用與調試項目教程(C語言版)
- Building Serverless Applications with Python
- Swift語言實戰精講
- 基于SpringBoot實現:Java分布式中間件開發入門與實戰
- Spring Boot+MVC實戰指南
- Java 9 with JShell
- 大規模語言模型開發基礎與實踐
- Microsoft HoloLens By Example
- JavaScript前端開發基礎教程
- 從零開始構建深度前饋神經網絡:Python+TensorFlow 2.x