summaryrefslogtreecommitdiffstats
path: root/tinyNET
diff options
context:
space:
mode:
authorSystem Administrator <root@Mamadous-MacBook-Pro.local>2016-06-08 12:37:23 +0200
committerSystem Administrator <root@Mamadous-MacBook-Pro.local>2016-06-08 12:37:23 +0200
commit6fa2225b6b6e14afb7c0184d464dc59f57935098 (patch)
tree61766fc59a05b79ac3df138517f40d70eced96f2 /tinyNET
parent0b30244d061295f0f7ac2aa65309608e218a458e (diff)
downloaddoubango-6fa2225b6b6e14afb7c0184d464dc59f57935098.zip
doubango-6fa2225b6b6e14afb7c0184d464dc59f57935098.tar.gz
Remove sources from the loop before releasing it (iOS runLoop)
Diffstat (limited to 'tinyNET')
-rwxr-xr-xtinyNET/src/tnet_transport_cfsocket.c52
1 files changed, 26 insertions, 26 deletions
diff --git a/tinyNET/src/tnet_transport_cfsocket.c b/tinyNET/src/tnet_transport_cfsocket.c
index 5ffe88d..b66c3b3 100755
--- a/tinyNET/src/tnet_transport_cfsocket.c
+++ b/tinyNET/src/tnet_transport_cfsocket.c
@@ -644,8 +644,10 @@ int removeSocketAtIndex(int index, transport_context_t *context)
tnet_fd_t fd = sock->fd;
// Remove from runloop
- if (context->cf_run_loop && sock->cf_run_loop_source) {
- CFRunLoopRemoveSource(context->cf_run_loop, sock->cf_run_loop_source, kCFRunLoopCommonModes);
+ if (sock->cf_run_loop_source) {
+ if (context->cf_run_loop) {
+ CFRunLoopRemoveSource(context->cf_run_loop, sock->cf_run_loop_source, kCFRunLoopCommonModes);
+ }
CFRelease(sock->cf_run_loop_source), sock->cf_run_loop_source = NULL;
}
@@ -1299,33 +1301,31 @@ void *tnet_transport_mainthread(void *param)
}
}
- // Remove all the sockets, streams and sources from the run loop
- tsk_safeobj_lock(context);
- for(i = 0; i < context->count; i++) {
- transport_context_t *context = transport->context;
- transport_socket_xt *sock = context->sockets[i];
-
- if (!sock) {
- continue;
- }
- if (sock->cf_run_loop_source) {
- CFRunLoopRemoveSource(context->cf_run_loop, sock->cf_run_loop_source, kCFRunLoopDefaultMode);
- }
- if (sock->cf_read_stream) {
- //CFReadStreamClose(sock->cf_read_stream);
- CFReadStreamUnscheduleFromRunLoop(sock->cf_read_stream, context->cf_run_loop, kCFRunLoopDefaultMode);
- }
- if (sock->cf_write_stream) {
- //CFWriteStreamClose(sock->cf_write_stream);
- CFWriteStreamUnscheduleFromRunLoop(sock->cf_write_stream, context->cf_run_loop, kCFRunLoopDefaultMode);
- }
- }
- tsk_safeobj_unlock(context);
-
-
bail:
TSK_DEBUG_INFO("Stopped [%s] server with IP {%s} on port {%d}...", transport->description, transport->master->ip, transport->master->port);
+
if(context->cf_run_loop) {
+ // Remove all the sockets, streams and sources from the run loop
+ tsk_safeobj_lock(context);
+ for(i = 0; i < context->count; i++) {
+ transport_context_t *context = transport->context;
+ transport_socket_xt *sock = context->sockets[i];
+
+ if (!sock) {
+ continue;
+ }
+ if (sock->cf_run_loop_source) {
+ CFRunLoopRemoveSource(context->cf_run_loop, sock->cf_run_loop_source, kCFRunLoopDefaultMode);
+ }
+ if (sock->cf_read_stream) {
+ CFReadStreamUnscheduleFromRunLoop(sock->cf_read_stream, context->cf_run_loop, kCFRunLoopDefaultMode);
+ }
+ if (sock->cf_write_stream) {
+ CFWriteStreamUnscheduleFromRunLoop(sock->cf_write_stream, context->cf_run_loop, kCFRunLoopDefaultMode);
+ }
+ }
+ tsk_safeobj_unlock(context);
+ // Release context
CFRelease(context->cf_run_loop);
context->cf_run_loop = NULL;
}
OpenPOWER on IntegriCloud