summaryrefslogtreecommitdiff
path: root/syscallent.sh
Commit message (Collapse)AuthorAge
* Tidy up includes and copyright notices, fix indentationDenys Vlasenko2012-03-16
| | | | | | | | | | | | | | | The files not mentioned in changelog below had only copyright notices fixes and indentation fixes. * defs.h: Include <stdint.h> and <inttypes.h>. * file.c: Do not include <inttypes.h>. Move struct kernel_dirent declaration below top include block. * block.c: Do not include <stdint.h> and <inttypes.h>. * quota.c: Likewise. * desc.c: Likewise. * signal.c: Likewise. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Stop using nargs == -1 in syscallent tablesDenys Vlasenko2011-08-23
| | | | | | | | | | | | | | | | | | | | | | | Usage -1 as argument count in syscallent tables necessitates the check for it, a-la: if (sysent[tcp->scno].nargs != -1) tcp->u_nargs = sysent[tcp->scno].nargs; else tcp->u_nargs = MAX_ARGS; which is stupid: we waste cycles checking something which is constant and known at compile time. * defs.h: Make struct sysent::nargs unsigned. * freebsd/i386/syscallent.h: Replace nargs of -1 with MA. * linux/s390/syscallent.h: Likewise. * linux/s390x/syscallent.h: Likewise. * svr4/syscallent.h: Likewise. * freebsd/syscalls.pl: Likewise in generator script. * syscallent.sh: Likewise in generator script. * syscall.c: Add define MA MAX_ARGS / undef MA around includes of syscallent[N].h. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* Mark shell scripts as executableMike Frysinger2009-09-18
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* 2008-04-19 Dmitry V. Levin <ldv@altlinux.org>Dmitry V. Levin2008-04-19
| | | | | | * signalent.sh: Fix sort(1) old-style options. * syscallent.sh: Likewise. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* 2003-02-26 Stuart Menefy <stuart.menefy@st.com>Roland McGrath2003-03-31
| | | | | * linux/ioctlent.sh: Take an arg for location of header files * syscallent.sh: Replaced lost $
* 2002-12-26 Roland McGrath <roland@redhat.com>Roland McGrath2002-12-30
| | | | | | * syscallent.sh: Grok three flavors of #define line, uniquify. * linux/hppa/syscallent.sh: File removed. * linux/powerpc/syscallent.sh: File removed.
* Initial revisionWichert Akkerman1999-02-19