仿生(android libc)互斥变种

时间:2010-02-17 17:32:11

标签: android pthreads mutex libc bionic

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

  • 递归
  • 定时
  • 自适应
  • 差错检查

2 个答案:

答案 0 :(得分:4)

来自文档(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.

答案 1 :(得分:0)

5年内发生了什么变化?