net: sockets: remove reference to async socket service
remove reference to async socket service Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
This commit is contained in:
parent
475878428c
commit
4fdcd229f2
|
@ -119,20 +119,13 @@ config NET_SOCKETS_SERVICE_THREAD_PRIO
|
|||
depends on NET_SOCKETS_SERVICE
|
||||
help
|
||||
Set the priority of the socket service dispatcher thread. This handler
|
||||
polls the sockets and either places the triggered socket to work queue
|
||||
for asynchronous handlers, or calls the user supplied callback directly
|
||||
for synchronous handlers.
|
||||
The value should be selected carefully because if this thread priority
|
||||
is too high, the work queue handlers might not be able to run if using
|
||||
asynchronous handlers that are called via a work queue.
|
||||
polls the sockets and calls the user supplied callback directly.
|
||||
|
||||
Note that >= 0 value means preemptive thread priority, the lowest
|
||||
value is NUM_PREEMPT_PRIORITIES.
|
||||
Highest preemptive thread priority is 0.
|
||||
Lowest cooperative thread priority is -1.
|
||||
Highest cooperative thread priority is -NUM_COOP_PRIORITIES.
|
||||
Make sure the priority is lower than workqueue priority so that
|
||||
we never block the workqueue handler.
|
||||
|
||||
config NET_SOCKETS_SERVICE_STACK_SIZE
|
||||
int "Stack size for the thread handling socket services"
|
||||
|
|
Loading…
Reference in New Issue