Commit 681ef94f authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

ptrace: Drop unneeded #includes

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent 350225a2
...@@ -7,31 +7,17 @@ ...@@ -7,31 +7,17 @@
#include <stdbool.h> #include <stdbool.h>
#include <limits.h> #include <limits.h>
#include <signal.h> #include <signal.h>
#include <limits.h>
#include <unistd.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/ptrace.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/resource.h> #include <sys/resource.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <sys/vfs.h>
#include <sys/user.h>
#include "compiler.h" #include "compiler.h"
#include "types.h" #include "types.h"
#include "util.h" #include "util.h"
#include "ptrace.h" #include "ptrace.h"
#include "crtools.h"
int unseize_task(pid_t pid) int unseize_task(pid_t pid)
{ {
return ptrace(PTRACE_DETACH, pid, NULL, NULL); return ptrace(PTRACE_DETACH, pid, NULL, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment