/DragonOS-0.1.9/user/apps/clear/ |
D | Makefile | 21 run: target 22 RUSTFLAGS=$(RUSTFLAGS) cargo $(TOOLCHAIN) run --target $(RUST_TARGET) 42 run-release: 43 RUSTFLAGS=$(RUSTFLAGS) cargo $(TOOLCHAIN) run --target $(RUST_TARGET) --release
|
/DragonOS-0.1.9/.github/workflows/ |
D | makefile.yml | 32 run: | 55 run: bash -c "source ~/.cargo/env && cd kernel && make test" 73 run: | 98 run: source ~/.bashrc && source ~/.cargo/env && make kernel -j $(nproc)
|
D | cache-toolchain.yml | 27 run: | 49 run: |
|
/DragonOS-0.1.9/ |
D | Makefile | 116 run-uefi: 122 run: target 128 run-uefi-vnc: 134 run-vnc: 140 run-docker:
|
D | README_EN.md | 34 ## How to run? 36   The steps to run DragonOS are very simple. You can refer to the following information t…
|
/DragonOS-0.1.9/docs/kernel/sched/ |
D | kernel_timer.md | 20 fn run(&mut self); 24   一种典型的实现方式是:新建一个零长的结构体,实现`TimerFunction`特性,然后在`run`函数中实现定时器要执行的操作。 153 /// TimerFunction特性中的函数run 154 fn run(&mut self) {
|
/DragonOS-0.1.9/docs/kernel/core_api/ |
D | softirq.md | 30 fn run(&self); 34   软中断处理程序需要实现的特征,需要实现`run`函数,用于处理软中断。当软中断被执行时,会调用`run`函数。 114 fn run(&self) {
|
/DragonOS-0.1.9/kernel/ |
D | build.rs | 2 kernel_build::run(); in main()
|
/DragonOS-0.1.9/docs/introduction/ |
D | build_system.md | 66 | make run | 198 make run-docker 224 3. 输入`make run`即可编译并写入磁盘镜像,并运行 240 - 本地编译,写入磁盘镜像,并在QEMU中运行: `make run` 242 - Docker编译,写入磁盘镜像,并在QEMU中运行: `make run-docker` 250 如果您需要在vnc中运行DragonOS,请在上述命令后加上`-vnc`后缀。如:`make run-vnc`
|
/DragonOS-0.1.9/kernel/src/time/ |
D | timer.rs | 37 fn run(&mut self) -> Result<(), SystemError>; in run() method 53 fn run(&mut self) -> Result<(), SystemError> { in run() method 123 fn run(&self) { in run() method 128 let r = func.map(|mut f| f.run()).unwrap_or(Ok(())); in run() 190 fn run(&self) { in run() method 228 timer_list_front.run(); in run()
|
/DragonOS-0.1.9/user/port/binutils/2.38/ |
D | run.sh | 1 docker run --rm -it -v $PWD:/workdir -w /workdir binutils-2.38
|
D | README.md | 24 docker run --rm -it -v $PWD:/workdir -w /workdir dragonos-binutils-build
|
/DragonOS-0.1.9/tools/qemu/ |
D | ifup-nat | 57 --pid-file=/var/run/qemu-dhcp-$BRIDGE.pid \ 58 --dhcp-leasefile=/var/run/qemu-dhcp-$BRIDGE.leases \
|
/DragonOS-0.1.9/build-scripts/kernel_build/src/ |
D | lib.rs | 12 pub fn run() { in run() function
|
/DragonOS-0.1.9/docs/kernel/configuration/ |
D | arch.md | 31 请注意,更换架构需要重新编译,因此请运行`make clean`清理编译结果。然后再运行`make run`即可。
|
/DragonOS-0.1.9/tools/ |
D | build_in_docker.sh | 3 docker run --rm --privileged=true --cap-add SYS_ADMIN --cap-add MKNOD -v $(pwd):/data -v /dev:/dev …
|
/DragonOS-0.1.9/docs/userland/appdev/ |
D | rust-quick-start.md | 32 4. 使用`cargo run`来运行项目
|
/DragonOS-0.1.9/tools/debugging/logmonitor/src/backend/monitor/ |
D | mm.rs | 73 pub fn run(&self) { in run() method 126 monitor_thread.run(); in create_threads() 153 pub fn run(&mut self) { in run() method
|
/DragonOS-0.1.9/kernel/src/exception/ |
D | softirq.rs | 97 fn run(&self); in run() method 219 softirq_func.as_ref().unwrap().run(); in do_softirq()
|
/DragonOS-0.1.9/tools/debugging/logmonitor/src/backend/ |
D | mod.rs | 109 mm_monitor.run(); in run_mm_monitor()
|
/DragonOS-0.1.9/docs/community/ChangeLog/V0.1.x/ |
D | V0.1.1.md | 149 * 删除run.sh 305 * 1、将原本run.sh的工作拆解,变为几个不同的make命令
|
/DragonOS-0.1.9/kernel/src/process/ |
D | kthread.rs | 106 pub fn run(self) -> i32 { in run() method 505 retval = closure.run(); in kernel_thread_bootstrap_stage2()
|
/DragonOS-0.1.9/kernel/src/net/ |
D | net_core.rs | 25 fn run(&mut self) -> Result<(), SystemError> { in run() method
|
/DragonOS-0.1.9/kernel/src/driver/video/ |
D | mod.rs | 247 fn run(&mut self) -> Result<(), SystemError> { in run() method
|
/DragonOS-0.1.9/docs/kernel/debug/ |
D | debug-kernel-with-gdb.md | 32   在DragonOS根目录中开启终端,使用`make run`即可开始编译运行DragonOS,如需更多编译命令方面的帮助,详见
|