@@ -0,0 +1,4 @@
+代码规范
+====================================
+
+[内容待完善]
+与社区建立联系
@@ -10,27 +10,37 @@
:maxdepth: 1
:caption: 入门
- introduction/index
+ introduction/intro
+ introduction/build_system
.. toctree::
- :maxdepth: 2
+ :maxdepth: 1
:caption: 内核层
- kernel/index
+ kernel/bootloader/index
+ kernel/process_management/index
+ kernel/filesystem/index
:caption: 应用层
- userland/index
+ userland/libc/index
:caption: 系统调用api文档
syscall_api/index
+.. toctree::
+ :caption: DragonOS社区
+ community/code_contribution/index
+ community/contact/index
Indices and tables
==================
@@ -1,3 +1,3 @@
-# 简介
+# DragonOS简介
DragonOS龙操作系统(以下简称“DragonOS”)是一个基于x86-64体系结构开发的,基于GPLv2协议开放源代码的64位操作系统。
+进程管理模块
@@ -1,9 +0,0 @@
-应用层
-====================================
-
-.. toctree::
- :caption: 目录
- intro
- libc/index
@@ -1 +0,0 @@
@@ -1,9 +1,9 @@
-入门
+API文档
====================================
:caption: 目录
- build_system
-内核层
+设计文档
- bootloader/index
- filesystem/index
@@ -3,6 +3,8 @@ LibC文档
- :caption: LibC
+ :caption: 目录
intro
+ apis/index
+ design/index
@@ -1 +1,4 @@
+# 简介
+
+ LibC是连接用户程序和操作系统的纽带,LibC为应用程序提供了一系列标准库函数。应用程序可以通过DragonOS的LibC,快速地与操作系统进行交互。
+ DragonOS的LibC主要依照POSIX 2008规范实现,与Linux下的glibC具有相似之处。