哪些类型的互斥并仿生libc支持?

  • 递归
  • 计时
  • 自适应
  • errorchecking
有帮助吗?

解决方案

从文件(bionic/libc/docs/OVERVIEW.TXT):

The implementation is based on futexes and strives to provide *very* short
code paths for common operations. Notable features are the following:

  - pthread_mutex_t, pthread_cond_t are only 4 bytes each.

  - Normal, recursive and error-check mutexes are supported, and the code
    path is heavily optimized for the normal case, which is used most of
    the time.

  - Process-shared mutexes and condition variables are not supported.
    Their implementation requires far more complexity and was absolutely
    not needed for Android (which uses other inter-process synchronization
    capabilities).

    Note that they could be added in the future without breaking the ABI
    by specifying more sophisticated code paths (which may make the common
    paths slightly slower though).

  - There is currently no support for read/write locks, priority-ceiling in
    mutexes and other more advanced features. Again, the main idea being
    that this was not needed for Android at all but could be added in the
    future.

其他提示

所以有任何东西改变了在5年?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top