File tree Expand file tree Collapse file tree 14 files changed +568
-67
lines changed Expand file tree Collapse file tree 14 files changed +568
-67
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 6
6
.. toctree ::
7
7
:maxdepth: 1
8
8
9
+ V0.1.x/V0.1.8
9
10
V0.1.x/V0.1.7
10
11
V0.1.x/V0.1.6
11
12
V0.1.x/V0.1.5
Original file line number Diff line number Diff line change 8
8
9
9
10
10
11
- DragonOS社区负责人: longjin
11
+ DragonOS社区负责人: 龙进
12
12
13
13
14
14
@@ -27,7 +27,7 @@ DragonOS是一个开源项目,我们欢迎任何形式的赞助和捐赠,您
27
27
您可以通过以下方式赞助和捐赠:
28
28
29
29
- 访问DragonOS官网 https://DragonOS.org ,点击页面右上角的“赞助”按钮,进行捐赠
30
- - 联系社区负责人,沟通具体的赞助方式等。
30
+ - 联系社区负责人,沟通具体的赞助方式等。
联系方式:[email protected]
31
31
32
32
财务及捐赠信息公开
33
33
-------------------------
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ cd DragonOS
19
19
```
20
20
21
21
:::{warning}
22
- DragonOS的源代码托管在Github上,但是,由于Github在国内的访问速度较慢,因此,我们建议您在github上绑定您的电脑的** ssh公钥** ,
22
+ DragonOS的源代码托管在Github上,但是,由于Github在国内的访问速度较慢。可能出现克隆失败的情况,这时只要重试即可。
23
+
24
+ 当然,我们建议您在github上绑定您的电脑的** ssh公钥** ,
23
25
然后通过以下命令来克隆代码,防止频繁出现git clone、pull、push失败的情况。
24
26
25
27
``` shell
Original file line number Diff line number Diff line change 90
90
- [x] 屏幕管理器
91
91
- [x] textui框架
92
92
- [x] CRC函数库
93
+ - [x] 通知链
93
94
94
95
### 系统调用
95
96
144
145
- [x] mpfr 4.1.1 [ https://github.com/DragonOS-Community/mpfr ] ( https://github.com/DragonOS-Community/mpfr )
145
146
- [x] mpc 1.2.1 [ https://github.com/DragonOS-Community/mpc ] ( https://github.com/DragonOS-Community/mpc )
146
147
- [x] relibc [ https://github.com/DragonOS-Community/relibc ] ( https://github.com/DragonOS-Community/relibc )
148
+ - [x] sqlite3
Original file line number Diff line number Diff line change 2
2
3
3
您可以从以下镜像站下载到DragonOS的源代码和其他文件:
4
4
5
- - [ DragonOS镜像站] ( https://mirrors.dragonos.org/ )
5
+ - [ DragonOS镜像站 https://mirrors.dragonos.org/ ] ( https://mirrors.dragonos.org/ )
6
6
- [ DragonOS国内镜像站 (RinGoTek)] ( https://mirrors.RinGoTek.cn )
7
+ - [ git镜像站] ( https://git.mirrors.dragonos.org/ )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
// 操作系统定义时间以ns为单位
6
6
#define CLOCKS_PER_SEC 1000000
7
7
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 );
46
8
47
9
/**
48
10
* @brief 获取当前的CPU时间
Original file line number Diff line number Diff line change 17
17
#include <common/crc64.h>
18
18
#include <common/crc7.h>
19
19
#include <common/crc8.h>
20
- #include <common/gfp.h>
21
20
#include <common/glib.h>
22
21
#include <common/idr.h>
23
22
#include <common/kfifo.h>
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments