码迷,mamicode.com
首页 > 编程语言 > 详细

多线程pthread

时间:2016-04-24 17:02:47      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

#import <pthread.h>

@interface ViewController ()

 

@end

 

@implementation ViewController

void * run(void *param){

    

    for (int i=0; i<50000; i++) {

        NSLog(@"run%@",[NSThread currentThread]);

    }

 

    

    

    return NULL;

}

- (IBAction)action:(id)sender {

    pthread_t thread;

    pthread_create(&thread, NULL, run, NULL);

    

    

}

多线程pthread

标签:

原文地址:http://www.cnblogs.com/xiezefeng/p/5427265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!