Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion system/nxplayer/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ config NXPLAYER_MAINTHREAD_STACKSIZE

config NXPLAYER_PLAYTHREAD_STACKSIZE
int "NxPlayer thread stack size"
default 1500
default PTHREAD_STACK_DEFAULT
---help---
Stack size to use with the NxPlayer play thread.

Expand Down
8 changes: 7 additions & 1 deletion system/nxrecorder/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ config SYSTEM_NXRECORDER

if SYSTEM_NXRECORDER

config NXRECORDER_MAINTHREAD_STACKSIZE
int "NxRecoder main thread stack size"
default DEFAULT_TASK_STACKSIZE
---help---
Stack size to use with the NxRecoder main thread.

config NXRECORDER_RECORDTHREAD_STACKSIZE
int "NxRecorder thread stack size"
default 1500
default PTHREAD_STACK_DEFAULT
---help---
Stack size to use with the NxRecorder record thread.

Expand Down
2 changes: 1 addition & 1 deletion system/nxrecorder/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CSRCS = nxrecorder.c
ifneq ($(CONFIG_NXRECORDER_COMMAND_LINE),)
PROGNAME = nxrecorder
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
STACKSIZE = $(CONFIG_NXRECORDER_MAINTHREAD_STACKSIZE)
MODULE = $(CONFIG_NXRECORDER_COMMAND_LINE)

MAINSRC = nxrecorder_main.c
Expand Down