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/sources | |
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/sources')
-rw-r--r-- | auto/sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/auto/sources b/auto/sources index 8958d5d9..efe748d1 100644 --- a/auto/sources +++ b/auto/sources @@ -18,6 +18,7 @@ NXT_LIB_DEPS=" \ src/nxt_process.h \ src/nxt_signal.h \ src/nxt_port.h \ + src/nxt_port_memory.h \ src/nxt_dyld.h \ src/nxt_thread.h \ src/nxt_thread_id.h \ @@ -86,6 +87,7 @@ NXT_LIB_SRCS=" \ src/nxt_process_title.c \ src/nxt_signal.c \ src/nxt_port_socket.c \ + src/nxt_port_memory.c \ src/nxt_port.c \ src/nxt_dyld.c \ src/nxt_random.c \ |