4
1
mirror of https://github.com/DragonOS-Community/DragonOS.git synced 2025-06-19 21:36:30 +00:00

增加内存分配日志监视器 (#424)

* 完成内存日志监视,并输出日志到文件
* 修复进程退出后,procfs查看进程status文件会崩溃的问题
* 修复signal唤醒进程的判断条件问题
This commit is contained in:
LoGin
2023-11-07 21:39:27 +08:00
committed by GitHub
parent 70a4e5550a
commit 7b32f5080f
46 changed files with 2033 additions and 59 deletions

@ -11,7 +11,7 @@ use alloc::{
vec::Vec,
};
use memoffset::offset_of;
use kdepends::memoffset::offset_of;
use x86::{controlregs::Cr4, segmentation::SegmentSelector};
use crate::{

@ -4,7 +4,7 @@ use core::{
sync::atomic::{compiler_fence, AtomicBool, Ordering},
};
use memoffset::offset_of;
use kdepends::memoffset::offset_of;
use crate::{
arch::process::table::TSSManager, exception::InterruptArch,