socketcall: re-add guard

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
This commit is contained in:
Bernhard Reutner-Fischer 2012-02-09 10:04:35 +01:00
parent 38c29ff319
commit 5c2f94e7b4

View File

@ -8,7 +8,18 @@
*/ */
#include <sys/syscall.h> #include <sys/syscall.h>
/* At the time of this writing,
* several arches provide the individual calls and do _not_ go through
* this demuxer.
*
* Verify all arches supported by your kernel before you remove the
* guard below!
*/
#ifdef __NR_socketcall
#include <sys/socket.h> #include <sys/socket.h>
#define __NR___socketcall __NR_socketcall #define __NR___socketcall __NR_socketcall
_syscall2(int, __socketcall, int, call, unsigned long *, args) _syscall2(int, __socketcall, int, call, unsigned long *, args)
#endif