File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ config LIBUV_THREADPOOL_PRIORITY
24
24
int "libuv default thread pool priority"
25
25
default 100
26
26
27
+ config LIBUV_STREAM_READ_BUF_SIZE
28
+ int "libuv stream read buffer size"
29
+ default 4096
30
+
27
31
config LIBUV_BACKEND_EPOLL
28
32
bool "Using epoll backend in libuv"
29
33
default y
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ CFLAGS += -DDEF_THREADPOOL_STACKSIZE=CONFIG_LIBUV_THREAD_STACKSIZE
53
53
CFLAGS += -DDEF_THREADPOOL_PRIORITY=CONFIG_LIBUV_THREADPOOL_PRIORITY
54
54
CFLAGS += -DMAX_EPOLL_EVENTS=CONFIG_LIBUV_MAX_EPOLL_EVENTS
55
55
CFLAGS += -DPREP_EVENT_SIZE=CONFIG_LIBUV_PREP_EVENT_SIZE
56
+ CFLAGS += -DDEF_STREAM_READ_BUF_SIZE=CONFIG_LIBUV_STREAM_READ_BUF_SIZE
56
57
57
58
ifeq ($(shell expr "$(GCCVER ) " \>= 12) , 1)
58
59
CFLAGS += -Wno-dangling-pointer
You can’t perform that action at this time.
0 commit comments