Skip to content

Commit 5db5a56

Browse files
authored
Patch add 0.1.8 changelog (#334)
* 删除无用代码,并把about app的版本号更新为0.1.8 * v0.1.8 changelog * 修正未安装rust-src的问题 * 完善文档
1 parent 67b4818 commit 5db5a56

File tree

14 files changed

+568
-67
lines changed

14 files changed

+568
-67
lines changed

docs/community/ChangeLog/V0.1.x/V0.1.8.md

Lines changed: 556 additions & 0 deletions
Large diffs are not rendered by default.

docs/community/ChangeLog/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
.. toctree::
77
:maxdepth: 1
88

9+
V0.1.x/V0.1.8
910
V0.1.x/V0.1.7
1011
V0.1.x/V0.1.6
1112
V0.1.x/V0.1.5

docs/community/contact/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
社区公共邮箱:[email protected]
1010

11-
DragonOS社区负责人: longjin
11+
DragonOS社区负责人: 龙进
1212

1313
工作邮箱: [email protected]
1414

@@ -27,7 +27,7 @@ DragonOS是一个开源项目,我们欢迎任何形式的赞助和捐赠,您
2727
您可以通过以下方式赞助和捐赠:
2828

2929
- 访问DragonOS官网 https://DragonOS.org ,点击页面右上角的“赞助”按钮,进行捐赠
30-
- 联系社区负责人,沟通具体的赞助方式等。
30+
- 联系社区负责人,沟通具体的赞助方式等。联系方式:[email protected]
3131

3232
财务及捐赠信息公开
3333
-------------------------

docs/introduction/build_system.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ cd DragonOS
1919
```
2020

2121
:::{warning}
22-
DragonOS的源代码托管在Github上,但是,由于Github在国内的访问速度较慢,因此,我们建议您在github上绑定您的电脑的**ssh公钥**
22+
DragonOS的源代码托管在Github上,但是,由于Github在国内的访问速度较慢。可能出现克隆失败的情况,这时只要重试即可。
23+
24+
当然,我们建议您在github上绑定您的电脑的**ssh公钥**
2325
然后通过以下命令来克隆代码,防止频繁出现git clone、pull、push失败的情况。
2426

2527
```shell

docs/introduction/features.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
- [x] 屏幕管理器
9191
- [x] textui框架
9292
- [x] CRC函数库
93+
- [x] 通知链
9394

9495
### 系统调用
9596

@@ -144,3 +145,4 @@
144145
- [x] mpfr 4.1.1 [https://github.com/DragonOS-Community/mpfr](https://github.com/DragonOS-Community/mpfr)
145146
- [x] mpc 1.2.1 [https://github.com/DragonOS-Community/mpc](https://github.com/DragonOS-Community/mpc)
146147
- [x] relibc [https://github.com/DragonOS-Community/relibc](https://github.com/DragonOS-Community/relibc)
148+
- [x] sqlite3

docs/introduction/mirrors.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22

33
您可以从以下镜像站下载到DragonOS的源代码和其他文件:
44

5-
- [DragonOS镜像站](https://mirrors.dragonos.org/)
5+
- [DragonOS镜像站 https://mirrors.dragonos.org/](https://mirrors.dragonos.org/)
66
- [DragonOS国内镜像站 (RinGoTek)](https://mirrors.RinGoTek.cn)
7+
- [git镜像站](https://git.mirrors.dragonos.org/)

kernel/src/common/gfp.h

Lines changed: 0 additions & 8 deletions
This file was deleted.

kernel/src/common/time.h

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -5,44 +5,6 @@
55
// 操作系统定义时间以ns为单位
66
#define CLOCKS_PER_SEC 1000000
77

8-
struct tm
9-
{
10-
int tm_sec; /* Seconds. [0-60] (1 leap second) */
11-
int tm_min; /* Minutes. [0-59] */
12-
int tm_hour; /* Hours. [0-23] */
13-
int tm_mday; /* Day. [1-31] */
14-
int tm_mon; /* Month. [0-11] */
15-
int tm_year; /* Year - 1900. */
16-
int tm_wday; /* Day of week. [0-6] */
17-
int tm_yday; /* Days in year.[0-365] */
18-
int tm_isdst; /* DST. [-1/0/1]*/
19-
20-
long int __tm_gmtoff; /* Seconds east of UTC. */
21-
const char *__tm_zone; /* Timezone abbreviation. */
22-
};
23-
24-
struct timespec
25-
{
26-
int64_t tv_sec; // 秒
27-
int64_t tv_nsec; // 纳秒
28-
};
29-
30-
/**
31-
* @brief 休眠指定时间
32-
*
33-
* @param rqtp 指定休眠的时间
34-
* @param rmtp 返回的剩余休眠时间
35-
* @return int
36-
*/
37-
extern int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
38-
39-
/**
40-
* @brief 睡眠指定时间
41-
*
42-
* @param usec 微秒
43-
* @return int
44-
*/
45-
extern int usleep(useconds_t usec);
468

479
/**
4810
* @brief 获取当前的CPU时间

kernel/src/include/bindings/wrapper.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#include <common/crc64.h>
1818
#include <common/crc7.h>
1919
#include <common/crc8.h>
20-
#include <common/gfp.h>
2120
#include <common/glib.h>
2221
#include <common/idr.h>
2322
#include <common/kfifo.h>

kernel/src/mm/gfp.rs

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)