mootoh (owner)

Revisions

  • 7b17a5 Fri Aug 28 09:22:28 -0700 2009
gist: 177079 Download_button fork
public
Public Clone URL: git://gist.github.com/177079.git
Embed All Files: show embed
gcd_sandbox.c #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <dispatch/dispatch.h>
 
int main(int argc, char **argv)
{
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0), ^{
        printf("hoge\n");
    });
 
    sleep(5);
 
    return 0;
}