Searched refs:create (Results 1 – 14 of 14) sorted by relevance
/DragonOS-0.1.8/kernel/src/process/ |
D | kthread.c | 54 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/ |
D | core.rs | 60 .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()
|
D | VFS.h | 139 …long (*create)(struct vfs_index_node_t *parent_inode, struct vfs_dir_entry_t *dest_dEntry, int mod… member
|
D | mount.rs | 201 fn create( in create() method 208 inner_inode: self.inner_inode.create(name, file_type, mode)?, in create()
|
D | mod.rs | 184 fn create( in create() method
|
D | syscall.rs | 151 parent_inode.create(filename, FileType::File, 0o777)?; in open()
|
/DragonOS-0.1.8/tools/ |
D | create_hdd_image.sh | 52 qemu-img create -f raw disk.img 64M
|
/DragonOS-0.1.8/docs/kernel/sched/ |
D | rt.md | 43 struct process_control_block *pcb_name = kthread_run_rt(&fn_name, NULL, "test create rt pcb");
|
/DragonOS-0.1.8/ |
D | README_EN.md | 37   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/ |
D | mod.rs | 109 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/ |
D | mod.rs | 206 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/ |
D | mod.rs | 287 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/ |
D | page.rs | 495 pub unsafe fn create(table_kind: PageTableKind, mut allocator: F) -> Option<Self> { in create() method
|
/DragonOS-0.1.8/kernel/src/filesystem/fat/ |
D | fs.rs | 1421 fn create( in create() method
|