美文网首页
introspection.h

introspection.h

作者: 李潇南 | 来源:发表于2017-09-11 09:42 被阅读35次
    void
    dispatch_introspection_hook_queue_create(dispatch_queue_t queue);
    
    void
    dispatch_introspection_hook_queue_destroy(dispatch_queue_t queue);
    
    void
    dispatch_introspection_hook_queue_item_enqueue(dispatch_queue_t queue,
            dispatch_object_t item);
    
    void
    dispatch_introspection_hook_queue_item_dequeue(dispatch_queue_t queue,
            dispatch_object_t item);
    
    void
    dispatch_introspection_hook_queue_item_complete(dispatch_object_t item);
    
    void
    dispatch_introspection_hook_queue_callout_begin(dispatch_queue_t queue,
            void *_Nullable context, dispatch_function_t function);
    
    
    void
    dispatch_introspection_hook_queue_callout_end(dispatch_queue_t queue,
            void *_Nullable context, dispatch_function_t function);
    
    

    相关文章

      网友评论

          本文标题:introspection.h

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