pthread functions “_np” suffix

后端 未结 2 630
甜味超标
甜味超标 2020-12-19 03:39

What does \"_np\" suffix mean here:

pthread_mutex_timedlock_np

or in macros

PTHREAD_MUTEX_TIMED_NP

Upd:

相关标签:
2条回答
  • 2020-12-19 04:04

    Non standard extensions -- i.e., Non Portable. ref (from the Internet Archive)

    0 讨论(0)
  • 2020-12-19 04:11

    It stands for Non Portable.

    That is, it's platform specific extensions to the standard pthreads functions.

    0 讨论(0)
提交回复
热议问题