Skip to content

Commit 7e82319

Browse files
committed
更新版本号
1 parent 84587d2 commit 7e82319

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/x86_64/core/dlinker.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ void load_segment(Elf64_Phdr *phdr, void *elf) {
6868
bool mmap_phdr_segment(Elf64_Ehdr *ehdr,Elf64_Phdr *phdrs){
6969
size_t i = 0;
7070
while (i < ehdr->e_phnum && phdrs[i].p_type != PT_LOAD){
71-
printk("phdr[%d].p_type = %d\n",i,phdrs[i].p_type);
7271
i++;
7372
}
7473
if (i == ehdr->e_phnum) {

src/x86_64/include/krlibc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* 定义CP_Kernel的各种属性
55
*/
6-
#define KERNEL_NAME "CP_Kernel-x86_64-0.1.0" // 内核编号
6+
#define KERNEL_NAME "CP_Kernel-x86_64-0.1.1" // 内核编号
77
#define MAX_CPU (256 * 2) // 最大支持CPU核心数 256
88
#define STACK_SIZE 32768 // 栈大小(byte)
99
#define MAX_WAIT_INDEX 100000 // 阻塞最大循环数

0 commit comments

Comments
 (0)