Home
last modified time | relevance | path

Searched refs:stat (Results 1 – 6 of 6) sorted by relevance

/DragonOS-0.1.2/user/libs/libc/src/sys/
DMakefile2 all: wait.o stat.o
10 stat.o: stat.c
11 $(CC) $(CFLAGS) -c stat.c -o stat.o
Dstat.c15 int mstat(struct mstat_t *stat) in mstat() argument
17 return syscall_invoke(SYS_MSTAT, (uint64_t)stat, 0, 0, 0, 0, 0, 0, 0); in mstat()
Dstat.h27 int mstat(struct mstat_t* stat);
/DragonOS-0.1.2/kernel/src/mm/
DMakefile5 all:mm.o slab.o mm-stat.o vma.o mmap.o utils.o mmio.o mmio-buddy.o
13 mm-stat.o: mm-stat.c
14 $(CC) $(CFLAGS) -c mm-stat.c -o mm-stat.o
Dmm-stat.c189 struct mm_stat_t stat = mm_stat(); in sys_mstat() local
191 copy_to_user((void *)regs->r8, &stat, sizeof(struct mm_stat_t)); in sys_mstat()
193 memcpy((void *)regs->r8, &stat, sizeof(struct mm_stat_t)); in sys_mstat()
/DragonOS-0.1.2/kernel/src/ktest/
Dtest-mutex.c68 int stat = 1; in ktest_mutex_case1() local
69 waitpid(pid, &stat, 0); in ktest_mutex_case1()
70 assert(stat == 0); in ktest_mutex_case1()