git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1715
94cd875c-1c1d-0410-91d2-
eb244daf1a30
#include <assert.h>
#include <fcntl.h>
#include <signal.h>
+#include <errno.h>
#define ENSC_WRAPPERS_VSERVER 1
#define ENSC_WRAPPERS_STDLIB 1
exit(wrapper_exit_code);
}
+ if (access("/proc/uptime",R_OK)==-1 && errno==ENOENT)
+ WRITE_MSG(2,
+ "WARNING: can not access /proc/uptime. Usually, this is caused by\n"
+ " procfs-security. Please read the FAQ for more details\n"
+ " http://www.linux-vserver.org/index.php?page=Linux-Vserver+FAQ\n");
+
Epipe(p);
pid = Efork();
exit(1);
}
+ if (access("/proc/uptime",R_OK)==-1 && errno==ENOENT)
+ WRITE_MSG(2,
+ "WARNING: can not access /proc/uptime. Usually, this is caused by\n"
+ " procfs-security. Please read the FAQ for more details\n"
+ " http://www.linux-vserver.org/index.php?page=Linux-Vserver+FAQ\n");
+
Vector_init(&xid_data, sizeof(struct XidData));
Echdir(PROC_DIR_NAME);