#include "print.h" #include "init.h" #include "thread.h" #include "interrupt.h" #include "console.h" #include "process.h" #include "syscall-init.h" #include "syscall.h" #include "stdio.h" #include "memory.h" #include "fs.h" #include "string.h" void k_thread_a(void*); void k_thread_b(void*); void u_prog_a(void); void u_prog_b(void); int main(void) { put_str("I am kernel\n"); init_all(); process_execute(u_prog_a, "u_prog_a"); process_execute(u_prog_b, "u_prog_b"); thread_start("k_thread_a", 31, k_thread_a, "I am thread_a"); thread_start("k_thread_b", 31, k_thread_b, "I am thread_b"); uint32_t fd = sys_open("/file1", O_RDWR); printf("open /file1, fd:%d\n", fd); char buf[64] = {0}; int read_bytes = sys_read(fd, buf, 18); printf("1_ read %d bytes:\n%s\n", read_bytes, buf); memset(buf, 0, 64); read_bytes = sys_read(fd, buf, 6); printf("2_ read %d bytes:\n%s", read_bytes, buf); memset(buf, 0, 64); read_bytes = sys_read(fd, buf, 6); printf("3_ read %d bytes:\n%s", read_bytes, buf); printf("________ close file1 and reopen ________\n"); sys_close(fd); fd = sys_open("/file1", O_RDWR); memset(buf, 0, 64); read_bytes = sys_read(fd, buf, 24); printf("4_ read %d bytes:\n%s", read_bytes, buf); sys_close(fd); while(1); return 0; } /* 在线程中运行的函数 */ void k_thread_a(void* arg) { void* addr1 = sys_malloc(256); void* addr2 = sys_malloc(255); void* addr3 = sys_malloc(254); console_put_str(" thread_a malloc addr:0x"); console_put_int((int)addr1); console_put_char(','); console_put_int((int)addr2); console_put_char(','); console_put_int((int)addr3); console_put_char('\n'); int cpu_delay = 100000; while(cpu_delay-- > 0); sys_free(addr1); sys_free(addr2); sys_free(addr3); while(1); } /* 在线程中运行的函数 */ void k_thread_b(void* arg) { void* addr1 = sys_malloc(256); void* addr2 = sys_malloc(255); void* addr3 = sys_malloc(254); console_put_str(" thread_b malloc addr:0x"); console_put_int((int)addr1); console_put_char(','); console_put_int((int)addr2); console_put_char(','); console_put_int((int)addr3); console_put_char('\n'); int cpu_delay = 100000; while(cpu_delay-- > 0); sys_free(addr1); sys_free(addr2); sys_free(addr3); while(1); } /* 测试用户进程 */ void u_prog_a(void) { void* addr1 = malloc(256); void* addr2 = malloc(255); void* addr3 = malloc(254); printf(" prog_a malloc addr:0x%x,0x%x,0x%x\n", (int)addr1, (int)addr2, (int)addr3); int cpu_delay = 100000; while(cpu_delay-- > 0); free(addr1); free(addr2); free(addr3); while(1); } /* 测试用户进程 */ void u_prog_b(void) { void* addr1 = malloc(256); void* addr2 = malloc(255); void* addr3 = malloc(254); printf(" prog_b malloc addr:0x%x,0x%x,0x%x\n", (int)addr1, (int)addr2, (int)addr3); int cpu_delay = 100000; while(cpu_delay-- > 0); free(addr1); free(addr2); free(addr3); while(1); }