美文网首页
iOS中锁的研究

iOS中锁的研究

作者: 张xd | 来源:发表于2015-12-09 14:52 被阅读104次

#define ITERATIONS (1024*1024*32)

int main(int argc, const char * argv[]) {

double then,now;

unsigned int i;

pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;

OSSpinLock spinLock = OS_SPINLOCK_INIT;

@autoreleasepool {

NSLock *lock = [NSLock new];

then = CFAbsoluteTimeGetCurrent();

for (i = 0; i < ITERATIONS; i ++) {

[lock lock];

[lock unlock];

}

now = CFAbsoluteTimeGetCurrent();

NSLog(@"NSLock time is      %f sec",now - then);

then = CFAbsoluteTimeGetCurrent();

for (i = 0; i < ITERATIONS; i ++) {

pthread_mutex_lock(&mutex);

pthread_mutex_unlock(&mutex);

}

now = CFAbsoluteTimeGetCurrent();

NSLog(@"pthread_mutex time is %f sec",now - then);

then = CFAbsoluteTimeGetCurrent();

for (i = 0; i < ITERATIONS; i ++) {

OSSpinLockLock(&spinLock);

OSSpinLockUnlock(&spinLock);

}

now = CFAbsoluteTimeGetCurrent();

NSLog(@"OSSpinLock time is    %f sec",now - then);

id obj = [NSObject new];

then = CFAbsoluteTimeGetCurrent();

for (i = 0; i < ITERATIONS; i ++) {

@synchronized(obj)

{

}

}

now = CFAbsoluteTimeGetCurrent();

NSLog(@"@synchronized time is  %f sec",now - then);

}

return 0;

}

得到的结果如下:

相关文章

  • iOS中锁的研究

    #define ITERATIONS (1024*1024*32) int main(int argc, cons...

  • iOS中的锁笔记

    本文只是我对iOS中锁的学习笔记,没有太深入的研究讲解。先来一张ios中常用锁的性能对照图 锁的分类 自旋锁:在未...

  • iOS中的转场研究

    iOS中的转场研究 iOS中的转场研究

  • iOS线程锁的研究

    iOS线程锁的研究 在开始说线程锁之前,我们需要了解线程的概念。 什么是线程 线程,有时被称为轻量级进程(LWP)...

  • iOS常用锁的研究

    iOS常用锁的研究 背景 iOS并发编程除了常用的多线程技术外,线程间同步的方法也是另外一个重要的点. 公司的项目...

  • OC--各种线程锁

    参考:正确使用多线程同步锁@synchronized()iOS中的锁iOS多线程安全详解iOS 常见知识点(三):...

  • ios开发中的各种锁机制

    ios开发中的各种锁机制

  • iOS锁系列-目录

    1、 iOS锁系列-NSLock对象锁2、iOS锁系列-NSConditionLock条件锁3、iOS锁系列-NS...

  • iOS 中的锁(4)

    iOS 中的锁(4) 不想篇幅太长,再开一篇继续探究iOS中的锁。 注:本文主要通过Objective-C语言进行...

  • iOS 中的锁(2)

    iOS 中的锁(2) 不想篇幅太长,再开一篇继续探究iOS中的锁。 注:本文主要通过Objective-C语言进行...

网友评论

      本文标题:iOS中锁的研究

      本文链接:https://www.haomeiwen.com/subject/ftaehttx.html