50dff52c99
* include/linux/x86/syscall.h: Move SYS_ defines from tcc.c. * include/linux/x86_64/syscall.h: Add SYS_ defines for tcc. * lib/x86-mes-gcc/setjmp.c: Rename from lib/libc+tcc-gcc.c * lib/x86-mes/setjmp.c: Rename from lib/libc+tcc-mes.c * lib/linux/tcc.c: Update.
49 lines
1.4 KiB
C
49 lines
1.4 KiB
C
/* -*-comment-start: "//";comment-end:""-*-
|
|
* GNU Mes --- Maxwell Equations of Software
|
|
* Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
*
|
|
* This file is part of GNU Mes.
|
|
*
|
|
* GNU Mes 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.
|
|
*
|
|
* GNU Mes 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 GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __MES_LINUX_X86_64_SYSCALL_H
|
|
#define __MES_LINUX_X86_64_SYSCALL_H 1
|
|
|
|
// libc-mini
|
|
// #define SYS_write 0x01
|
|
// #define SYS_exit 0x3c
|
|
|
|
// libc
|
|
#define SYS_fork 0x39
|
|
#define SYS_read 0x00
|
|
#define SYS_open 0x02
|
|
//#define SYS_waitpid
|
|
#define SYS_wait4 0x3d
|
|
#define SYS_execve 0x3a
|
|
#define SYS_chmod 0x5a
|
|
#define SYS_access 0x15
|
|
#define SYS_brk 0x0c
|
|
#define SYS_ioctl 0x10
|
|
#define SYS_fsync 0x4a
|
|
|
|
// libc+tcc
|
|
#define SYS_close 0x03
|
|
#define SYS_lseek 0x08
|
|
#define SYS_unlink 0x57
|
|
#define SYS_rmdir 0x54
|
|
#define SYS_stat 0x04
|
|
#define SYS_getcwd 0x4f
|
|
|
|
#endif // __MES_LINUX_X86_64_SYSCALL_H
|