1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-02 02:21:44 +03:00

missing: move syscall related definitions to missing_syscall.h

This commit is contained in:
Yu Watanabe 2018-12-06 06:32:41 +01:00
parent bd0937ddb3
commit 851d66fac2
2 changed files with 11 additions and 10 deletions

View File

@ -12,16 +12,11 @@
#include <sys/resource.h>
#include <sys/socket.h>
#include <sys/syscall.h>
#include <unistd.h>
#if HAVE_AUDIT
#include <libaudit.h>
#endif
#ifdef ARCH_MIPS
#include <asm/sgidefs.h>
#endif
#if HAVE_LINUX_VM_SOCKETS_H
#include <linux/vm_sockets.h>
#else
@ -250,10 +245,6 @@ struct sockaddr_vm {
#define RENAME_NOREPLACE (1 << 0)
#endif
#ifndef KCMP_FILE
#define KCMP_FILE 0
#endif
#ifndef SOL_ALG
#define SOL_ALG 279
#endif

View File

@ -6,10 +6,20 @@
#include <fcntl.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
#ifdef ARCH_MIPS
#include <asm/sgidefs.h>
#endif
#include "missing_keyctl.h"
#include "missing_stat.h"
/* linux/kcmp.h */
#ifndef KCMP_FILE /* 3f4994cfc15f38a3159c6e3a4b3ab2e1481a6b02 (3.19) */
#define KCMP_FILE 0
#endif
#if !HAVE_PIVOT_ROOT
static inline int missing_pivot_root(const char *new_root, const char *put_old) {
return syscall(__NR_pivot_root, new_root, put_old);