Home
last modified time | relevance | path

Searched refs:create (Results 1 – 14 of 14) sorted by relevance

/DragonOS-0.1.8/kernel/src/process/
Dkthread.c54 struct kthread_create_info_t *create = kzalloc(sizeof(struct kthread_create_info_t), 0); in __kthread_create_on_node() local
56 if (create == NULL) in __kthread_create_on_node()
60 create->thread_fn = thread_fn; in __kthread_create_on_node()
61 create->data = data; in __kthread_create_on_node()
62 create->node = node; in __kthread_create_on_node()
63 create->result = NULL; in __kthread_create_on_node()
64 list_init(&create->list); in __kthread_create_on_node()
67 list_append(&kthread_create_list, &create->list); in __kthread_create_on_node()
80 while (create->result == NULL) in __kthread_create_on_node()
83 pcb = create->result; in __kthread_create_on_node()
[all …]
/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dcore.rs60 .create("proc", FileType::Dir, 0o777) in vfs_init()
63 .create("dev", FileType::Dir, 0o777) in vfs_init()
66 .create("sys", FileType::Dir, 0o777) in vfs_init()
119 .create(mountpoint_name, FileType::Dir, 0o777) in do_migrate()
221 parent_inode.create(filename, FileType::Dir, 0o777)?; in do_mkdir()
DVFS.h139 …long (*create)(struct vfs_index_node_t *parent_inode, struct vfs_dir_entry_t *dest_dEntry, int mod… member
Dmount.rs201 fn create( in create() method
208 inner_inode: self.inner_inode.create(name, file_type, mode)?, in create()
Dmod.rs184 fn create( in create() method
Dsyscall.rs151 parent_inode.create(filename, FileType::File, 0o777)?; in open()
/DragonOS-0.1.8/tools/
Dcreate_hdd_image.sh52 qemu-img create -f raw disk.img 64M
/DragonOS-0.1.8/docs/kernel/sched/
Drt.md43 struct process_control_block *pcb_name = kthread_run_rt(&fn_name, NULL, "test create rt pcb");
/DragonOS-0.1.8/
DREADME_EN.md37   Or, you can also bring your ideas, discuss with community members, and create some new …
96 **What we support:** using this project to create greater value and contribute code to this project…
/DragonOS-0.1.8/kernel/src/filesystem/devfs/
Dmod.rs109 dev_root_inode.create("char", FileType::Dir, 0o755)?; in register_device()
128 dev_root_inode.create("block", FileType::Dir, 0o755)?; in register_device()
/DragonOS-0.1.8/kernel/src/arch/x86_64/mm/
Dmod.rs206 PageMapper::create(PageTableKind::User, LockedFrameAllocator) in setup_new_usermapper()
345 crate::mm::page::PageMapper::<MMArch, _>::create( in allocator_init()
/DragonOS-0.1.8/kernel/src/filesystem/procfs/
Dmod.rs287 let _pf: Arc<dyn IndexNode> = proc.create(&pid.to_string(), FileType::Dir, 0o777)?; in register_pid()
290 let binding: Arc<dyn IndexNode> = _pf.create("status", FileType::File, 0o777)?; in register_pid()
/DragonOS-0.1.8/kernel/src/mm/
Dpage.rs495 pub unsafe fn create(table_kind: PageTableKind, mut allocator: F) -> Option<Self> { in create() method
/DragonOS-0.1.8/kernel/src/filesystem/fat/
Dfs.rs1421 fn create( in create() method