From 5b08f12fe8b6abcf5c25deb3ade32c13eaca53bc Mon Sep 17 00:00:00 2001 From: Andy Green Date: Thu, 10 Apr 2014 10:13:43 +0800 Subject: [PATCH] docs clarify create context comment threading not supported Signed-off-by: Andy Green --- lib/context.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/context.c b/lib/context.c index 3580d4ac..92383bf8 100644 --- a/lib/context.c +++ b/lib/context.c @@ -51,8 +51,8 @@ lws_get_library_version(void) * After initialization, it returns a struct libwebsocket_context * that * represents this server. After calling, user code needs to take care * of calling libwebsocket_service() with the context pointer to get the - * server's sockets serviced. This can be done in the same process context - * or a forked process, or another thread, + * server's sockets serviced. This must be done in the same process + * context as the initialization call. * * The protocol callback functions are called for a handful of events * including http requests coming in, websocket connections becoming