~mirabilos/klibc/master

« back to all changes in this revision

Viewing changes to usr/klibc/Kbuild

  • Committer: Ben Hutchings
  • Date: 2024-10-02 01:00:52 UTC
  • Revision ID: git-v1:bf11cb682b2c1e817feb69331f115bf40d9e92ea
[klibc] syscalls: Remove support for socketcall()

All architectures that implement socketcall() now also have separate
system calls:

- arm: added in 2.6.12
- i386: added in 4.3
- m68k: added in 4.3
- mips, mips64: added in 2.1.44
- parisc: always had both
- ppc, ppc64: added in 2.6.37
- s390, s390x: added in 4.3
- sh: added in 2.6.37
- sparc, sparc64: added in 4.4 and 4.20

We can therefore unconditionally use the separate system calls, except
for accept() which may need to be a wrapper for accept4().

Remove support for socketcall(), and move the socket system call
definitions into SYSCALLS.def.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
# Generate syscall stubs
9
9
klib-y += syscalls/
10
 
# Generate socket calls stubs
11
 
klib-y += socketcalls/
12
10
# zlib, if configured
13
11
klib-$(CONFIG_KLIBC_ZLIB) += zlib/
14
12
# arch specific .o files