Deleted Added
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7
8#ifndef _NXT_UNIX_H_INCLUDED_

--- 224 unchanged lines hidden (view full) ---

233#if (NXT_HAVE_GETRANDOM)
234#include <sys/random.h> /* getrandom(). */
235#elif (NXT_HAVE_LINUX_SYS_GETRANDOM)
236#include <linux/random.h> /* SYS_getrandom. */
237#elif (NXT_HAVE_GETENTROPY_SYS_RANDOM)
238#include <sys/random.h> /* getentropy(). */
239#endif
240
241
242#if (NXT_TEST_BUILD)
243#include <nxt_test_build.h>
244#endif
245
246
247/*
248 * On Linux IOV_MAX is 1024. Linux uses kernel stack for 8 iovec's

--- 43 unchanged lines hidden ---