clang-format

This commit is contained in:
2024-09-10 13:03:02 -04:00
parent 53c617d779
commit d66450e427
381 changed files with 28864 additions and 34170 deletions

View File

@@ -30,9 +30,8 @@
#ifndef _SYSCALL_H_
#define _SYSCALL_H_
#include <cdefs.h> /* for __DEAD */
struct trapframe; /* from <machine/trapframe.h> */
struct trapframe; /* from <machine/trapframe.h> */
/*
* The system call dispatcher.
@@ -49,8 +48,7 @@ void enter_forked_process(struct trapframe *tf);
/* Enter user mode. Does not return. */
__DEAD void enter_new_process(int argc, userptr_t argv, userptr_t env,
vaddr_t stackptr, vaddr_t entrypoint);
vaddr_t stackptr, vaddr_t entrypoint);
/*
* Prototypes for IN-KERNEL entry points for system call implementations.