We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84587d2 commit 7e82319Copy full SHA for 7e82319
src/x86_64/core/dlinker.c
@@ -68,7 +68,6 @@ void load_segment(Elf64_Phdr *phdr, void *elf) {
68
bool mmap_phdr_segment(Elf64_Ehdr *ehdr,Elf64_Phdr *phdrs){
69
size_t i = 0;
70
while (i < ehdr->e_phnum && phdrs[i].p_type != PT_LOAD){
71
- printk("phdr[%d].p_type = %d\n",i,phdrs[i].p_type);
72
i++;
73
}
74
if (i == ehdr->e_phnum) {
src/x86_64/include/krlibc.h
@@ -3,7 +3,7 @@
3
/**
4
* 定义CP_Kernel的各种属性
5
*/
6
-#define KERNEL_NAME "CP_Kernel-x86_64-0.1.0" // 内核编号
+#define KERNEL_NAME "CP_Kernel-x86_64-0.1.1" // 内核编号
7
#define MAX_CPU (256 * 2) // 最大支持CPU核心数 256
8
#define STACK_SIZE 32768 // 栈大小(byte)
9
#define MAX_WAIT_INDEX 100000 // 阻塞最大循环数
0 commit comments