2017-12-03 12:56:21 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2018-06-07 05:16:43 +00:00
|
|
|
* Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-12-03 12:56:21 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-12-03 12:56:21 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-12-03 12:56:21 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-12-03 12:56:21 +00:00
|
|
|
* 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
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-12-03 12:56:21 +00:00
|
|
|
*/
|
|
|
|
|
2018-06-03 16:54:26 +00:00
|
|
|
#include <errno.h>
|
2018-08-11 09:42:30 +00:00
|
|
|
#include <linux/x86/syscall.h>
|
2017-12-03 12:56:21 +00:00
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
__sys_call (long sys_call)
|
Revert syscall split (of commit 55d38162be9ebd5b90b2550d0331a030c446c001);
just copy the two syscalls I need for __raise instead.
* lib/linux/arm-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-gcc/syscall.c: ...here.
* lib/linux/arm-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-mescc/syscall.c: ...here.
* lib/linux/x86-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-gcc/syscall.c: ...here.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-mescc/syscall.c: ...here.
2020-08-25 09:08:20 +00:00
|
|
|
{
|
|
|
|
asm ("mov____0x8(%ebp),%eax !8");
|
|
|
|
asm ("int____$0x80");
|
|
|
|
}
|
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
__sys_call1 (long sys_call, long one)
|
Revert syscall split (of commit 55d38162be9ebd5b90b2550d0331a030c446c001);
just copy the two syscalls I need for __raise instead.
* lib/linux/arm-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-gcc/syscall.c: ...here.
* lib/linux/arm-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-mescc/syscall.c: ...here.
* lib/linux/x86-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-gcc/syscall.c: ...here.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-mescc/syscall.c: ...here.
2020-08-25 09:08:20 +00:00
|
|
|
{
|
|
|
|
asm ("mov____0x8(%ebp),%eax !8");
|
|
|
|
asm ("mov____0x8(%ebp),%ebx !12");
|
|
|
|
asm ("int____$0x80");
|
|
|
|
}
|
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
__sys_call2 (long sys_call, long one, long two)
|
Revert syscall split (of commit 55d38162be9ebd5b90b2550d0331a030c446c001);
just copy the two syscalls I need for __raise instead.
* lib/linux/arm-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-gcc/syscall.c: ...here.
* lib/linux/arm-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-mescc/syscall.c: ...here.
* lib/linux/x86-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-gcc/syscall.c: ...here.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-mescc/syscall.c: ...here.
2020-08-25 09:08:20 +00:00
|
|
|
{
|
|
|
|
asm ("mov____0x8(%ebp),%eax !8");
|
|
|
|
asm ("mov____0x8(%ebp),%ebx !12");
|
|
|
|
asm ("mov____0x8(%ebp),%ecx !16");
|
|
|
|
asm ("int____$0x80");
|
|
|
|
}
|
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
__sys_call3 (long sys_call, long one, long two, long three)
|
Revert syscall split (of commit 55d38162be9ebd5b90b2550d0331a030c446c001);
just copy the two syscalls I need for __raise instead.
* lib/linux/arm-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-gcc/syscall.c: ...here.
* lib/linux/arm-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-mescc/syscall.c: ...here.
* lib/linux/x86-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-gcc/syscall.c: ...here.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-mescc/syscall.c: ...here.
2020-08-25 09:08:20 +00:00
|
|
|
{
|
|
|
|
asm ("mov____0x8(%ebp),%eax !8");
|
|
|
|
asm ("mov____0x8(%ebp),%ebx !12");
|
|
|
|
asm ("mov____0x8(%ebp),%ecx !16");
|
|
|
|
asm ("mov____0x8(%ebp),%edx !20");
|
|
|
|
asm ("int____$0x80");
|
|
|
|
}
|
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
__sys_call4 (long sys_call, long one, long two, long three, long four)
|
Revert syscall split (of commit 55d38162be9ebd5b90b2550d0331a030c446c001);
just copy the two syscalls I need for __raise instead.
* lib/linux/arm-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-gcc/syscall.c: ...here.
* lib/linux/arm-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/arm-mes-mescc/syscall.c: ...here.
* lib/linux/x86-mes-gcc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-gcc/syscall.c: ...here.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal): New procedure.
(__sys_call2_internal): New procedure.
(__raise): Use them.
(__sys_call, __sys_call2, __sys_call3, __sys_call4, __sys_call6): Move to...
* lib/linux/x86-mes-mescc/syscall.c: ...here.
2020-08-25 09:08:20 +00:00
|
|
|
{
|
|
|
|
asm ("mov____0x8(%ebp),%eax !8");
|
|
|
|
asm ("mov____0x8(%ebp),%ebx !12");
|
|
|
|
asm ("mov____0x8(%ebp),%ecx !16");
|
|
|
|
asm ("mov____0x8(%ebp),%edx !20");
|
|
|
|
asm ("mov____0x8(%ebp),%esi !24");
|
|
|
|
asm ("int____$0x80");
|
|
|
|
}
|
2018-08-11 09:42:30 +00:00
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
_sys_call (long sys_call)
|
2018-06-07 05:16:43 +00:00
|
|
|
{
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long r = __sys_call (sys_call);
|
2018-06-07 05:16:43 +00:00
|
|
|
if (r < 0)
|
2018-06-08 05:17:51 +00:00
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2018-06-07 05:16:43 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
_sys_call1 (long sys_call, long one)
|
2018-06-07 05:16:43 +00:00
|
|
|
{
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long r = __sys_call1 (sys_call, one);
|
2018-06-07 05:16:43 +00:00
|
|
|
if (r < 0)
|
2018-06-08 05:17:51 +00:00
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2018-06-07 05:16:43 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
_sys_call2 (long sys_call, long one, long two)
|
2018-06-07 05:16:43 +00:00
|
|
|
{
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long r = __sys_call2 (sys_call, one, two);
|
2018-06-07 05:16:43 +00:00
|
|
|
if (r < 0)
|
2018-06-08 05:17:51 +00:00
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2018-06-07 05:16:43 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
_sys_call3 (long sys_call, long one, long two, long three)
|
2018-06-07 05:16:43 +00:00
|
|
|
{
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long r = __sys_call3 (sys_call, one, two, three);
|
2018-06-07 05:16:43 +00:00
|
|
|
if (r < 0)
|
2018-06-08 05:17:51 +00:00
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
2018-06-07 05:16:43 +00:00
|
|
|
else
|
2018-06-07 05:19:01 +00:00
|
|
|
errno = 0;
|
2018-06-07 05:16:43 +00:00
|
|
|
return r;
|
|
|
|
}
|
2018-08-11 09:42:30 +00:00
|
|
|
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long
|
|
|
|
_sys_call4 (long sys_call, long one, long two, long three, long four)
|
2018-08-11 09:42:30 +00:00
|
|
|
{
|
mescc: Mes C Library: x86: Use long for syscalls.
The Linux signature uses long, also this allows for making
_sys_call and friends architecture-independent.
* lib/linux/x86-mes-mescc/syscall-internal.c (__sys_call_internal,
__sys_call2_internal): Use long. Update callers.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1,
__sys_call2, __sys_call3, __sys_call4, _sys_call, _sys_call1,
_sys_call2, _sys_call3, _sys_call4): Likewise.
2020-08-30 10:09:32 +00:00
|
|
|
long r = __sys_call4 (sys_call, one, two, three, four);
|
2018-08-11 09:42:30 +00:00
|
|
|
if (r < 0)
|
|
|
|
{
|
|
|
|
errno = -r;
|
|
|
|
r = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
errno = 0;
|
|
|
|
return r;
|
|
|
|
}
|