美文网首页
semaphore.h

semaphore.h

作者: 李潇南 | 来源:发表于2017-09-11 09:54 被阅读70次
    DISPATCH_DECL(dispatch_semaphore);
    
    dispatch_semaphore_t
    dispatch_semaphore_create(long value);
    
    long
    dispatch_semaphore_wait(dispatch_semaphore_t dsema, dispatch_time_t timeout);
    
    long
    dispatch_semaphore_signal(dispatch_semaphore_t dsema);
    
    

    相关文章

      网友评论

          本文标题:semaphore.h

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