Commit e73434cc authored by Pavel Emelyanov's avatar Pavel Emelyanov Committed by Andrei Vagin

criu: Kill syscall-types.h header

Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent f233b86a
......@@ -7,6 +7,7 @@
#include <sys/stat.h>
#include <ftw.h>
#include <libgen.h>
#include <sched.h>
#include "common/list.h"
#include "xmalloc.h"
#include "cgroup.h"
......@@ -19,7 +20,6 @@
#include "util-pie.h"
#include "namespaces.h"
#include "seize.h"
#include "syscall-types.h"
#include "protobuf.h"
#include "images/core.pb-c.h"
#include "images/cgroup.pb-c.h"
......
/*
* Please add here type definitions if
* syscall prototypes need them.
*
* Anything else should go to plain type.h
*/
#ifndef __CR_SYSCALL_TYPES_H__
#define __CR_SYSCALL_TYPES_H__
#include <sys/time.h>
#include <arpa/inet.h>
#include <sched.h>
#include <time.h>
#include <fcntl.h>
#include "int.h"
struct cap_header {
u32 version;
int pid;
};
struct cap_data {
u32 eff;
u32 prm;
u32 inh;
};
struct sockaddr;
struct msghdr;
struct rusage;
struct file_handle;
struct robust_list_head;
struct io_event;
struct iocb;
struct timespec;
typedef unsigned long aio_context_t;
struct itimerspec;
#ifndef F_GETFD
#define F_GETFD 1
#endif
struct krlimit {
unsigned long rlim_cur;
unsigned long rlim_max;
};
struct siginfo;
/* Type of timers in the kernel. */
typedef int kernel_timer_t;
#endif /* __CR_SYSCALL_TYPES_H__ */
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