Home
last modified time | relevance | path

Searched refs:run (Results 1 – 25 of 28) sorted by relevance

12

/DragonOS-0.1.9/user/apps/clear/
DMakefile21 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/
Dmakefile.yml32 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)
Dcache-toolchain.yml27 run: |
49 run: |
/DragonOS-0.1.9/
DMakefile116 run-uefi:
122 run: target
128 run-uefi-vnc:
134 run-vnc:
140 run-docker:
DREADME_EN.md34 ## 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/
Dkernel_timer.md20 fn run(&mut self);
24   一种典型的实现方式是:新建一个零长的结构体,实现`TimerFunction`特性,然后在`run`函数中实现定时器要执行的操作。
153 /// TimerFunction特性中的函数run
154 fn run(&mut self) {
/DragonOS-0.1.9/docs/kernel/core_api/
Dsoftirq.md30 fn run(&self);
34   软中断处理程序需要实现的特征,需要实现`run`函数,用于处理软中断。当软中断被执行时,会调用`run`函数。
114 fn run(&self) {
/DragonOS-0.1.9/kernel/
Dbuild.rs2 kernel_build::run(); in main()
/DragonOS-0.1.9/docs/introduction/
Dbuild_system.md66 | 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/
Dtimer.rs37 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/
Drun.sh1 docker run --rm -it -v $PWD:/workdir -w /workdir binutils-2.38
DREADME.md24 docker run --rm -it -v $PWD:/workdir -w /workdir dragonos-binutils-build
/DragonOS-0.1.9/tools/qemu/
Difup-nat57 --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/
Dlib.rs12 pub fn run() { in run() function
/DragonOS-0.1.9/docs/kernel/configuration/
Darch.md31 请注意,更换架构需要重新编译,因此请运行`make clean`清理编译结果。然后再运行`make run`即可。
/DragonOS-0.1.9/tools/
Dbuild_in_docker.sh3 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/
Drust-quick-start.md32 4. 使用`cargo run`来运行项目
/DragonOS-0.1.9/tools/debugging/logmonitor/src/backend/monitor/
Dmm.rs73 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/
Dsoftirq.rs97 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/
Dmod.rs109 mm_monitor.run(); in run_mm_monitor()
/DragonOS-0.1.9/docs/community/ChangeLog/V0.1.x/
DV0.1.1.md149 * 删除run.sh
305 * 1、将原本run.sh的工作拆解,变为几个不同的make命令
/DragonOS-0.1.9/kernel/src/process/
Dkthread.rs106 pub fn run(self) -> i32 { in run() method
505 retval = closure.run(); in kernel_thread_bootstrap_stage2()
/DragonOS-0.1.9/kernel/src/net/
Dnet_core.rs25 fn run(&mut self) -> Result<(), SystemError> { in run() method
/DragonOS-0.1.9/kernel/src/driver/video/
Dmod.rs247 fn run(&mut self) -> Result<(), SystemError> { in run() method
/DragonOS-0.1.9/docs/kernel/debug/
Ddebug-kernel-with-gdb.md32 &emsp;&emsp;在DragonOS根目录中开启终端,使用`make run`即可开始编译运行DragonOS,如需更多编译命令方面的帮助,详见

12