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 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
Original file line number Diff line number Diff line change 88
991010
11- DragonOS社区负责人: longjin
11+ DragonOS社区负责人: 龙进
1212
13131414
@@ -27,7 +27,7 @@ DragonOS是一个开源项目,我们欢迎任何形式的赞助和捐赠,您
2727您可以通过以下方式赞助和捐赠:
2828
2929- 访问DragonOS官网 https://DragonOS.org ,点击页面右上角的“赞助”按钮,进行捐赠
30- - 联系社区负责人,沟通具体的赞助方式等。
30+ - 联系社区负责人,沟通具体的赞助方式等。
联系方式:[email protected] 3131
3232财务及捐赠信息公开
3333-------------------------
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 9090- [x] 屏幕管理器
9191- [x] textui框架
9292- [x] CRC函数库
93+ - [x] 通知链
9394
9495### 系统调用
9596
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
Original file line number Diff line number Diff line change 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/ )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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时间
Original file line number Diff line number Diff line change 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>
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments