about APP: adjust copyright info (#76)

* 修正文档错误

* buffix: 在释放kthread struct之前,先判断是否为kthread

* 修改about应用中的版权声明
This commit is contained in:
login
2022-11-04 15:05:33 +08:00
committed by GitHub
parent ac13e53a60
commit fd8ba5749d
3 changed files with 19 additions and 13 deletions

View File

@ -1,8 +1,8 @@
#include <libc/math.h>
#include <libc/stdio.h>
#include <libc/stdlib.h>
#include <libc/unistd.h>
#include <libc/time.h>
#include <libc/math.h>
#include <libc/unistd.h>
void print_ascii_logo()
{
@ -16,19 +16,27 @@ void print_ascii_logo()
void print_copyright()
{
printf(" DragonOS - An opensource operating system.\n");
printf(" Copyright: fslongjin. 2022, All rights reserved.\n");
printf(" Copyright: fslongjin & DragonOS Community. 2022, All rights reserved.\n");
printf(" Version: ");
put_string("V0.1.0 - 20221106\n", COLOR_GREEN, COLOR_BLACK);
printf(" You can visit the project via:\n");
printf("\n");
put_string(" https://github.com/fslongjin/DragonOS\n", COLOR_ORANGE, COLOR_BLACK);
put_string(" Official Website: https://DragonOS.org\n", COLOR_INDIGO, COLOR_BLACK);
put_string(" GitHub: https://github.com/fslongjin/DragonOS\n", COLOR_ORANGE, COLOR_BLACK);
printf("\n");
printf(" Email: longjin@RinGoTek.cn\n");
printf(" Maintainer: longjin <longjin@RinGoTek.cn>\n");
printf(" Get contact with the community: <contact@DragonOS.org>\n");
printf("\n");
printf(" If you find any problems during use, please visit:\n");
put_string(" https://bbs.DragonOS.org\n", COLOR_ORANGE, COLOR_BLACK);
printf("\n");
}
int main()
{
// printf("Hello World!\n");
print_ascii_logo();
print_copyright();
// exit(0);
// while (1)