diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-05-12 20:32:41 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-05-12 20:32:41 +0300 |
commit | f7b4bdfd892a0b479dc946896435a3ba7f9615dd (patch) | |
tree | a6f0c4ebaeed2d9f0fcb1c07178b52a684a53280 /auto/shmem | |
parent | 1782c771fab999b37a8c04ed72760e3528205be7 (diff) | |
download | unit-f7b4bdfd892a0b479dc946896435a3ba7f9615dd.tar.gz unit-f7b4bdfd892a0b479dc946896435a3ba7f9615dd.tar.bz2 |
Using shared memory to send data via nxt_port.
Usage:
b = nxt_port_mmap_get_buf(task, port, size);
b->mem.free = nxt_cpymem(b->mem.free, data, size);
nxt_port_socket_write(task, port, NXT_PORT_MSG_DATA, -1, 0, b);
Diffstat (limited to 'auto/shmem')
-rw-r--r-- | auto/shmem | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/auto/shmem b/auto/shmem new file mode 100644 index 00000000..48665649 --- /dev/null +++ b/auto/shmem @@ -0,0 +1,60 @@ + +# Copyright (C) Igor Sysoev +# Copyright (C) NGINX, Inc. + + +# Linux, FreeBSD, MacOSX + +nxt_feature="shm_open()" +nxt_feature_name=NXT_HAVE_SHM_OPEN +nxt_feature_run=yes +nxt_feature_incs= +nxt_feature_libs= + +if [ "$NXT_SYSTEM" = "Linux" ]; then + nxt_feature_libs=-lrt +fi + +nxt_feature_test="#include <sys/mman.h> + #include <fcntl.h> + #include <sys/stat.h> + #include <sys/types.h> + + int main() { + static char name[] = \"/nginext.configure\"; + + shm_unlink(name); + + int fd = shm_open(name, O_CREAT | O_EXCL | O_RDWR, + S_IRUSR | S_IWUSR); + if (fd == -1) + return 1; + + shm_unlink(name); + return 0; + }" +. auto/feature + + +# Linux + +nxt_feature="memfd_create()" +nxt_feature_name=NXT_HAVE_MEMFD_CREATE +nxt_feature_run=yes +nxt_feature_incs= +nxt_feature_libs= +nxt_feature_test="#include <linux/memfd.h> + #include <unistd.h> + #include <sys/syscall.h> + + int main() { + static char name[] = \"/nginext.configure\"; + + int fd = syscall(SYS_memfd_create, name, MFD_CLOEXEC); + if (fd == -1) + return 1; + + return 0; + }" +. auto/feature + |