| 12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- This source file is part of the Swift System open source project
- Copyright (c) 2020 Apple Inc. and the Swift System project authors
- Licensed under Apache License v2.0 with Runtime Library Exception
- See https://swift.org/LICENSE.txt for license information
- */
- #ifdef __linux__
- #ifndef _GNU_SOURCE
- #define _GNU_SOURCE
- #endif
- #include <sys/epoll.h>
- #include <sys/eventfd.h>
- #include <sys/socket.h>
- #include <sys/sysinfo.h>
- #include <sys/timerfd.h>
- #include <sys/types.h>
- #include <sys/mount.h>
- #include <errno.h>
- #include <pthread.h>
- #include <sched.h>
- #include <sys/un.h>
- #include <unistd.h>
- #include <string.h>
- #include <fcntl.h>
- #include <sys/stat.h>
- #include <sys/mman.h>
- #include <stdlib.h>
- #include <sys/resource.h>
- #include <dirent.h>
- #include <stdio.h>
- #include "io_uring.h"
- #endif
|