view sources/patches/uClibc-setns.patch @ 1781:b27851ab2795 draft

Vo Minh Thu was surprised by toybox replacing busybox and requested I update about.html.
author Rob Landley <rob@landley.net>
date Tue, 04 Aug 2015 14:40:20 -0500
parents 3ffb288cc713
children
line wrap: on
line source

The setns system call is only 5 years old, so uClibc can't be expected to support it, but toybox needs it.

--- /dev/null	2015-03-12 00:35:23.675793740 -0500
+++ uClibc/libc/sysdeps/linux/common/setns.c	2015-03-19 13:18:05.711157730 -0500
@@ -0,0 +1,3 @@
+#include <sys/syscall.h>
+
+_syscall2(int, setns, int, fd, int, nstype);