Mon 14 Oct 23:06:38 CEST 2024

This commit is contained in:
sbosse 2024-10-14 23:09:02 +02:00
parent 72a115d1e3
commit 391a498f52

24
kernel/syscall_handler.h Normal file
View File

@ -0,0 +1,24 @@
/*
Copyright (C) 2016-2019 The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file LICENSE for details.
*/
#ifndef SYSCALL_HANDLER_H
#define SYSCALL_HANDLER_H
/* Only kernel/syscall.handlers invoked by other parts of kernel code should be declared here. */
int sys_process_run( int fd, int argc, const char **argv);
int sys_process_exec( int fd, int argc, const char **argv);
int sys_process_sleep(unsigned int ms);
int sys_open_file( int fd, const char *path, int mode, kernel_flags_t flags );
int sys_mkdir( int fd, const char *path);
int sys_rmdir(int fd, const char *path);
int sys_object_close( int fd );
int sys_open_window(int wd, int x, int y, int w, int h);
int sys_process_object_max();
#endif