mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			96 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
/* Copyright © 2011 Fritz Grimpen
 | 
						|
 *
 | 
						|
 * This file is part of Xelix.
 | 
						|
 *
 | 
						|
 * Xelix is free software: you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License as published by
 | 
						|
 * the Free Software Foundation, either version 3 of the License, or
 | 
						|
 * (at your option) any later version.
 | 
						|
 *
 | 
						|
 * Xelix is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
 * GNU General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU General Public License
 | 
						|
 * along with Xelix. If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 */
 | 
						|
 | 
						|
#include <lib/generic.h>
 | 
						|
#include <tasks/syscall.h>
 | 
						|
 | 
						|
#include "syscalls/write.h"
 | 
						|
#include "syscalls/exit.h"
 | 
						|
#include "syscalls/getpid.h"
 | 
						|
#include "syscalls/getppid.h"
 | 
						|
#include "syscalls/read.h"
 | 
						|
#include "syscalls/brk.h"
 | 
						|
#include "syscalls/mmap.h"
 | 
						|
#include "syscalls/munmap.h"
 | 
						|
#include "syscalls/test.h"
 | 
						|
#include "syscalls/hostname.h"
 | 
						|
#include "syscalls/uname.h"
 | 
						|
#include "syscalls/open.h"
 | 
						|
#include "syscalls/execve.h"
 | 
						|
#include "syscalls/seek.h"
 | 
						|
#include "syscalls/opendir.h"
 | 
						|
#include "syscalls/readdir.h"
 | 
						|
#include "syscalls/kill.h"
 | 
						|
#include "syscalls/getexecdata.h"
 | 
						|
#include "syscalls/cwd.h"
 | 
						|
#include "syscalls/fork.h"
 | 
						|
 | 
						|
syscall_t syscall_table[] = {
 | 
						|
	NULL,
 | 
						|
	sys_exit,			// 1
 | 
						|
	sys_read,			// 2
 | 
						|
	sys_write,			// 3
 | 
						|
	sys_getpid,			// 4
 | 
						|
	sys_brk,			// 5
 | 
						|
	sys_getppid,		// 6
 | 
						|
	sys_mmap,			// 7
 | 
						|
	sys_munmap,			// 8
 | 
						|
	sys_test,			// 9
 | 
						|
	sys_get_hostname,	// 10
 | 
						|
	sys_set_hostname,	// 11
 | 
						|
	sys_uname,			// 12
 | 
						|
	sys_open,			// 13
 | 
						|
	sys_execve,			// 14
 | 
						|
	sys_seek,			// 15
 | 
						|
	sys_opendir,		// 16
 | 
						|
	sys_readdir,		// 17
 | 
						|
	sys_kill,			// 18
 | 
						|
	sys_getexecdata,	// 19
 | 
						|
	sys_chdir,			// 20
 | 
						|
	sys_getcwd,			// 21
 | 
						|
	sys_fork,			// 22
 | 
						|
};
 | 
						|
 | 
						|
char* syscall_name_table[] = {
 | 
						|
	NULL,
 | 
						|
	"exit",			// 1
 | 
						|
	"read",			// 2
 | 
						|
	"write",		// 3
 | 
						|
	"getpid",		// 4
 | 
						|
	"brk",			// 5
 | 
						|
	"getppid",		// 6
 | 
						|
	"mmap",			// 7
 | 
						|
	"munmap",		// 8
 | 
						|
	"test",			// 9
 | 
						|
	"get_hostname",	// 10
 | 
						|
	"set_hostname",	// 11
 | 
						|
	"uname",		// 12
 | 
						|
	"open",			// 13
 | 
						|
	"execve",		// 14
 | 
						|
	"seek",			// 15
 | 
						|
	"opendir",		// 16
 | 
						|
	"readdir",		// 17
 | 
						|
	"kill",			// 18
 | 
						|
	"getexecdata",	// 19
 | 
						|
	"chdir",		// 20
 | 
						|
	"getcwd",		// 21
 | 
						|
	"fork",			// 22
 | 
						|
};
 |