Tagged Questions
The libdispatch tag has no wiki summary.
33
votes
6answers
5k views
How do you trigger a block after a delay, like -performSelector:withObject:afterDelay:?
Is there a way to call a block with a primitive parameter after a delay, like using performSelector:withObject:afterDelay: but with an argument like int/double/float?
6
votes
4answers
1k views
Could Grand Central Dispatch (`libdispatch`) ever be made available on Windows?
I’m looking into multithreading, and GCD seems like a much better option than manually writing a solution using pthread.h and pthreads-win32. However, although it looks like libdispatch is either ...
6
votes
6answers
1k views
Grand Central vs Parallel Extensions
Does anyone know of any good websites on the upcoming "Grand Central" technology from Apple (in Snow Leopard) and how it compares to the Parallel Extensions (and the native parallel computing stuff) ...
4
votes
3answers
1k views
Why should I use Grand Central Dispatch over OpenMP?
Apple introduced Grand Central Dispatch (a thread pool) in Snow Leopard, but haven't gone into why one should use it over OpenMP, which is cross-platform and also works on Leopard. They're both pretty ...
3
votes
2answers
420 views
iPhone - Grand Central Dispatch main thread
I have been using with success, grand central dispatch in my apps, but I was wondering what is the real advantage of using something like this:
dispatch_async(dispatch_get_main_queue(), ^{ ... do ...
3
votes
1answer
681 views
Are blocks and libdispatch available on linux?
I would love to try out grand central dispatch, but all I have to develop on is an Ubuntu workstation. Is libdispatch, and the blocks extension to c/obj-c etc... available on linux? If so, how do I ...
2
votes
1answer
336 views
Isn't dispatch_semaphore_wait FIFO?
The documentation for dispatch_semaphore_wait says that it "waits in FIFO order for a signal". But it doesn't seem to in this example-- can someone please explain?
Example:
#include ...
2
votes
1answer
384 views
Grand Central Dispatch versus Cilk++
Anybody have any thoughts on Grand Central Dispatch (which has now been open-sourced by Apple) and Cilk++? Comparisons/contrasts? Is Cilk more Windows-only?
1
vote
1answer
237 views
How many threads should Grand Central Dispatch be creating?
I understand that GCD will only create as many threads as needed to make best use of the CPU. In code using dispatch_async to launch about 30 background tasks, I'm seeing the number of threads jump by ...