Skip to content

Commit

Permalink
Always use single thread by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Jul 21, 2024
1 parent d220bf2 commit 8c034e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk/auto/options.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ SRS_BUILD_TAG= # Set the object files tag name.
SRS_CLEAN=YES # Whether do "make clean" when configure.
SRS_SIMULATOR=NO # Whether enable RTC simulate API.
SRS_GENERATE_OBJS=NO # Whether generate objs and quit.
SRS_SINGLE_THREAD=NO # Whether force single thread mode.
SRS_SINGLE_THREAD=YES # Whether force single thread mode.
#
################################################################
# Performance options.
Expand Down

1 comment on commit 8c034e5

@zhqfdn
Copy link

@zhqfdn zhqfdn commented on 8c034e5 Jul 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

./configure --prefix=/opt/srs --single-thread=on ........

systemctl start srs ..... [ FAIL ]

./configure --prefix=/opt/srs --single-thread=off ........

systemctl start srs ..... [ OK ]

Please sign in to comment.