search for: c12d525

Displaying 2 results from an estimated 2 matches for "c12d525".

Did you mean: 12525
2010 Mar 14
1
klibc sparc sockets foo
...kernel provides the direct socket (and related) syscalls 2) patch klibc such that it uses socketcall when targeting sparc(32). http://bugs.debian.org/444087 Here is a sample patch for the 2nd option: diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def index c12d525..0599dac 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -259,4 +259,9 @@ int sysinfo(struct sysinfo *); * system calls. */ <?!i386> long socketcall::__socketcall(int, const unsigned long *); +#if !defined(__sparc__) && !defined(__arch64__) +/* + * SPARC does...
2010 Mar 14
0
[patches] klibc review unsorted patch queue
...kernel provides the direct socket (and related) syscalls 2) patch klibc such that it uses socketcall when targeting sparc(32). http://bugs.debian.org/444087 Here is a sample patch for the 2nd option: diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def index c12d525..0599dac 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -259,4 +259,9 @@ int sysinfo(struct sysinfo *); * system calls. */ <?!i386> long socketcall::__socketcall(int, const unsigned long *); +#if !defined(__sparc__) && !defined(__arch64__) +/* + * SPARC does...