@nxtedition/rocksdb 8.1.9 → 8.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deps/rocksdb/rocksdb.gyp +0 -3
- package/package.json +2 -2
- package/deps/liburing/liburing/COPYING +0 -502
- package/deps/liburing/liburing/COPYING.GPL +0 -339
- package/deps/liburing/liburing/LICENSE +0 -7
- package/deps/liburing/liburing/Makefile +0 -84
- package/deps/liburing/liburing/Makefile.quiet +0 -11
- package/deps/liburing/liburing/configure +0 -420
- package/deps/liburing/liburing/debian/README.Debian +0 -7
- package/deps/liburing/liburing/debian/changelog +0 -27
- package/deps/liburing/liburing/debian/compat +0 -1
- package/deps/liburing/liburing/debian/control +0 -48
- package/deps/liburing/liburing/debian/copyright +0 -49
- package/deps/liburing/liburing/debian/liburing-dev.install +0 -4
- package/deps/liburing/liburing/debian/liburing-dev.manpages +0 -6
- package/deps/liburing/liburing/debian/liburing1-udeb.install +0 -1
- package/deps/liburing/liburing/debian/liburing1.install +0 -1
- package/deps/liburing/liburing/debian/liburing1.symbols +0 -32
- package/deps/liburing/liburing/debian/patches/series +0 -1
- package/deps/liburing/liburing/debian/rules +0 -81
- package/deps/liburing/liburing/debian/source/format +0 -1
- package/deps/liburing/liburing/debian/source/local-options +0 -2
- package/deps/liburing/liburing/debian/source/options +0 -1
- package/deps/liburing/liburing/debian/watch +0 -3
- package/deps/liburing/liburing/examples/Makefile +0 -29
- package/deps/liburing/liburing/examples/io_uring-cp.c +0 -279
- package/deps/liburing/liburing/examples/io_uring-test.c +0 -112
- package/deps/liburing/liburing/examples/link-cp.c +0 -193
- package/deps/liburing/liburing/examples/ucontext-cp.c +0 -273
- package/deps/liburing/liburing/liburing.pc.in +0 -12
- package/deps/liburing/liburing/liburing.spec +0 -66
- package/deps/liburing/liburing/make-debs.sh +0 -53
- package/deps/liburing/liburing/man/io_uring.7 +0 -736
- package/deps/liburing/liburing/man/io_uring_enter.2 +0 -1403
- package/deps/liburing/liburing/man/io_uring_get_sqe.3 +0 -37
- package/deps/liburing/liburing/man/io_uring_queue_exit.3 +0 -27
- package/deps/liburing/liburing/man/io_uring_queue_init.3 +0 -44
- package/deps/liburing/liburing/man/io_uring_register.2 +0 -605
- package/deps/liburing/liburing/man/io_uring_setup.2 +0 -515
- package/deps/liburing/liburing/src/Makefile +0 -76
- package/deps/liburing/liburing/src/include/liburing/barrier.h +0 -73
- package/deps/liburing/liburing/src/include/liburing/io_uring.h +0 -422
- package/deps/liburing/liburing/src/include/liburing.h +0 -775
- package/deps/liburing/liburing/src/liburing.map +0 -46
- package/deps/liburing/liburing/src/queue.c +0 -403
- package/deps/liburing/liburing/src/register.c +0 -299
- package/deps/liburing/liburing/src/setup.c +0 -356
- package/deps/liburing/liburing/src/syscall.c +0 -73
- package/deps/liburing/liburing/src/syscall.h +0 -20
- package/deps/liburing/liburing.gyp +0 -20
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/* SPDX-License-Identifier: MIT */
|
|
2
|
-
#ifndef LIBURING_SYSCALL_H
|
|
3
|
-
#define LIBURING_SYSCALL_H
|
|
4
|
-
|
|
5
|
-
#include <signal.h>
|
|
6
|
-
|
|
7
|
-
struct io_uring_params;
|
|
8
|
-
|
|
9
|
-
/*
|
|
10
|
-
* System calls
|
|
11
|
-
*/
|
|
12
|
-
int __sys_io_uring_setup(unsigned entries, struct io_uring_params *p);
|
|
13
|
-
int __sys_io_uring_enter(int fd, unsigned to_submit, unsigned min_complete,
|
|
14
|
-
unsigned flags, sigset_t *sig);
|
|
15
|
-
int __sys_io_uring_enter2(int fd, unsigned to_submit, unsigned min_complete,
|
|
16
|
-
unsigned flags, sigset_t *sig, int sz);
|
|
17
|
-
int __sys_io_uring_register(int fd, unsigned int opcode, const void *arg,
|
|
18
|
-
unsigned int nr_args);
|
|
19
|
-
|
|
20
|
-
#endif
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"variables": { "openssl_fips": "0" },
|
|
3
|
-
"targets":
|
|
4
|
-
[
|
|
5
|
-
{
|
|
6
|
-
"target_name": "liburing",
|
|
7
|
-
"type": "static_library",
|
|
8
|
-
"include_dirs": ["linux", "liburing/src/include"],
|
|
9
|
-
"direct_dependent_settings":
|
|
10
|
-
{ "include_dirs": ["linux", "liburing/src/include"] },
|
|
11
|
-
"sources":
|
|
12
|
-
[
|
|
13
|
-
"liburing/src/queue.c",
|
|
14
|
-
"liburing/src/register.c",
|
|
15
|
-
"liburing/src/setup.c",
|
|
16
|
-
"liburing/src/syscall.c",
|
|
17
|
-
],
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
}
|