月亮词典
首页
查询
pthreads
pthreads
常用释义
词性释义
pthreads
例句
全部
In
Linux
,
POSIX
semaphores
and
System V
semaphores
are
asynchronous
but
pthreads
conditional
variables
are
not
asynchronous
.
在Linux中,POSIX信号量和SystemV信号量也都是异步的,不过pthreads条件变量不是异步的。
In
Linux
,
pthreads
does
not
provide
an
initial
state
,
but
POSIX
semaphores
provide
an
initial
state
.
在Linux中,pthreads并没有提供初始状态,而POSIX信号量则提供了一个初始状态。
This
option
should
be
automatically
set
by
Cedega
,
however,
if
problems
exist
it
may
be useful
to
change
the
pthreads
option
.
这个参数应该由cedega自动设置,如果存在问题的话它可以用来更改pthreads选项。
The
latest
versions
of
Linux
support
pthreads
draft 10
,
so
care
needs
to
be taken to
map
the
calls
appropriately
.
最新版本的Linux支持pthreadsdraft10,所以需要小心地对调用进行适当的映射。
The
pthreads
implementation
supports
both
blocking
and
timeouts
.
pthreads实现既支持阻塞也支持超时。
And
finally
,
pthreads
are
ideal
for
parallel
programming
on
multiple
-
CPU
machines
.
最后,pthreads是在多CPU计算机上进行并行编程的理想之选。
The threading
model
used
is
the
POSIX
threading
interface
,
often
called
pthreads
.
使用的线程模型是POSIX线程接口,通常称为pthreads。
In
Linux
,
only
pthreads
provides
a
timeout
feature
in
wait
functions
.
在Linux中,只有pthreads在等待函数中提供了超时的特性。
The
linker
complained
of some
missing
pthreads
-
related
exports
.
链接器抱怨缺少与pthread相关的输出。
If
your
MySQL
libs
are
linked
against
pthreads
this
will
happen
.
如果你的MySQL库依靠pthreads连接就会这样。
网络释义
线程库
本文使用 POSIX
线程库
(
pthreads
)来创建线程。比如,本文需要两个线程,一个是数据接收线程,另一个是音乐播放线程。
线程标准
A:linux 的线程遵守 POSIX
线程标准
(
pthreads
) ,目前主要有两个版本: 1. LinuxThreads. 1996 年由 Xavier Leroy 实现, …