Skip to content

Commit

Permalink
完成创建进程一节
Browse files Browse the repository at this point in the history
  • Loading branch information
polaris1119 committed Jun 24, 2016
1 parent d27ff43 commit 2e16cf3
Show file tree
Hide file tree
Showing 7 changed files with 469 additions and 36 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -2,7 +2,9 @@

Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。

标准库基于最新版本Go(目前基于 Go1.3)。注:目前 Go 标准库文档并没有标识某个 API 基于哪个版本的 Go,将来会加上这部分 [issue](https://github.com/golang/go/issues/5778)
标准库基于最新版本Go。注:目前 Go 标准库文档并没有标识某个 API 基于哪个版本的 Go,将来会加上这部分 [issue](https://github.com/golang/go/issues/5778)

讲解中涉及到特定操作系统时,针对的都是 Linux/amd64。Go 中相关系统调用在 Linux 下,对于同一个系统调用,如果有对应的 `at` 版本,使用的都是 `at` 版本,如 `open` 系统调用使用都是 `openat`。更多信息参考 [Go语言中文网博客中关于系统调用的文章](http://blog.studygolang.com)

## 交流 ##

Expand Down
34 changes: 0 additions & 34 deletions chapter06/06.3.md

This file was deleted.

10 changes: 10 additions & 0 deletions chapter10/10.0.md
@@ -0,0 +1,10 @@
# 第十章 进程、线程和 goroutine #

本章将研究 Go 语言进程、线程和 goroutine,会涉及到操作系统关于进程、线程的知识,同时研究 Go 语言提供的相关标准库 API;goroutine 作为 Go 的一个核心特性,本章会重点介绍。

虽然标准库中能操作进程、线程和 goroutine 的API不多,但它们是深入学习、理解 Go 语言必须掌握的知识。本章从操作系统和 Go 源码层面深入探讨它们。

# 导航 #

- [第九章](/chapter09/09.0.md)
- 下一节:[创建进程](10.1.md)

0 comments on commit 2e16cf3

Please sign in to comment.