Tagged Questions
2
votes
1answer
104 views
Parallel processing in Python à la Grand Central Dispatch?
Is there a way of doing parallel processing in Python using concepts similar to those of Apple's Grand Central Dispatch? Grand Central Dispatch looks, from the outset, like a nice way of handling ...
2
votes
1answer
240 views
iPhone - a question about dispatch timers and timing
I have to fire a method at regular intervals (every 0.16 seconds). The tolerance can be, lets say up to 30%. Closer to 16 ms, better.
I have tried NSTimers but they are not precise enough. I have ...
1
vote
2answers
209 views
dispatch_async() in c
I am having problems understanding GCD. i need to use dispatch_async to spawn the function put_values() which will in an endless loop put values into a buffer. Get_values() will remove then also in ...
1
vote
1answer
116 views
How to set up proper object teardown when using GCD and calling back to main thread?
Consider this setup:
Object A creates object B for doing some work, and sets itself as B's delegate to be informed of work progress.
B does some work with GCD blocks, and signals back to A with the ...
1
vote
1answer
227 views
Unable to use GCD dispatch sources for reading from Serial Port file descriptors
I'm having trouble using Grand Central Dispatch Source events when reading from serial ports.
I use dispatch_source_create with DISPATCH_SOURCE_TYPE_READ so that the OS will run my block of code when ...
1
vote
1answer
258 views
iPhone - GCD knowing if a dispatch is suspended
I have to use
dispatch_resume(...
to resume a dispatch that was suspended, but as the method resuming the dispatch may be called by several parts of the app, I need to know if the dispatch is ...
0
votes
3answers
227 views
How to determine the currently running async GCD Dispatch Queues
I have a refresh button on my iOS application that launches an asynchronous dispatch queue in GCD. The name of the queue is custom. There can be issues where the user bangs the heck out of the button ...