网页
图片
视频
学术
词典
地图
更多
航班
笔记本
pthread
网络
线程示例;条件变量主要操作;线程模型
网络释义
1.
线程示例
广州友善之臂计算机科技有限公司 ... ·math: 数学函数调用 ·
pthread
:
线程示例
·udptalk: 网络编程 ...
www.arm9.net
|
基于11个网页
2.
条件变量主要操作
....cn/orgs/hpclab/ 12-3-29
条件变量主要操作
(
pthread
)
pthread_cond_signal 使在条件变量上等待的线程中的 一个线程重 …
www.docin.com
|
基于11个网页
3.
线程模型
linux下编程处理并行任务时,可以采用多进程模块(fork)或者多
线程模型
(
pthread
)。有时候还会采用混合的模式。
blog.csdn.net
|
基于5个网页
4.
线程机制
服务器并发处理采用i/o复用(epoll)和多
线程机制
(
pthread
)协同工作,其中可能涉及信号量、互斥锁、队列、链表等;
teamtrac.ustcsz.edu.cn
|
基于4个网页
5.
选项而且库
MySQL中文参考手册- 4 安装MySQL ... cxx 使用 -
pthread
选项而且库
SIGHUP 信号了。另外,通过运行 ...
www.sdau.edu.cn
|
基于 1 个网页
6.
线程编程
多
线程编程
(
Pthread
); 信号(Signal); Socket编程。
www.loveunix.net
|
基于 1 个网页
更多释义
收起释义
例句
释义:
全部
全部
,
线程示例
线程示例
,
条件变量主要操作
条件变量主要操作
,
线程模型
线程模型
类别:
全部
全部
,
口语
口语
,
书面语
书面语
,
标题
标题
,
技术
技术
来源:
全部
全部
,
字典
字典
,
网络
网络
难度:
全部
全部
,
简单
简单
,
中等
中等
,
难
难
更多例句筛选
收起例句筛选
1.
I
further
tested
this
simple
Pthread
code
on
the
PPE
to
see
how
it
scales
with
an
increasing
number
of
threads
.
我
在
PPE
上
进一步
测试
了
这个
简单
的
Pthread
代码
,
以
此
了解
随着
线程
数量
的
增加
它
的
性能
变化
情况
。
www.ibm.com
2.
As
you
can see
,
pthread_mutex_init
accepts
a
pointer
to
an
already
-
allocated
region
of
memory
to initialize as
a
mutex
.
正如
所
示
,
pthread_mutex_init
接受
一个
指针
作为
参数
以
初始
化为
互斥
对象
,
该
指针
指向
一块
已
分配
好
的
内存
区
。
www.ibm.com
3.
In
other words
,
the
system
allocates
at least
10MB
of
private
storage
for
each
pthread
.
换言之
,
系统
为
每个
pthread
分配
至少
10MB
的
专用
存储
。
www.ibm.com
4.
This
sounds
a bit
confusing
,
but the
pthread
example
below
will
clarify
how
condition
variables
work
.
这
听起来
有点
难以
理解
,
下面
的
pthread
例子
会
说明
条件
变量
是
怎么
工作
的
。
forum.byr.edu.cn
5.
Thus
,
PTHREAD_PROCESS_SHARED
and
interprocess
POSIX
synchronization
primitives
can
be
implemented
and
are
now
available
.
这样
,
PTHREAD_PROCESS_SHARED
和
进程间
POSIX
同步
原语
可以
被
实现
,
而且
现在
可用
。
www.ibm.com
6.
pthread
-qthreaded
or
_r
invocation
mode
Creates
programs
running
in
a multithreaded
environment
.
pthread-qthreaded
或
_r
调用
模式
创建
在
多线程
环境
中
运行
的
程序
www.ibm.com
7.
In
Linux
,
pthread_cond_signal
wakes
up
a
thread
waiting
on a
conditional
variable
.
在
Linux
中
,
pthread_cond_signal
会
唤醒
等待
某个
条件
变更
的
某个
线程
。
www.ibm.com
8.
POSIX
provides
locking
and
synchronization
support
through
the pthread_mutex
data
type
.
POSIX
通过
pthread_mutex
数据
类型
提供
锁定
和
同步
支持
。
www.ibm.com
9.
In
Linux
,
the pthread_cancel method
terminates
execution
of
the
thread
identified
by
the
specified
threadId
.
在
Linux
中
,
pthread_cancel
可以
终止
由
具体
的
threadId
所
标识
的
线程
的
执行
。
www.ibm.com
10.
Note
that
you've
invoked
pthread_cond_broadcast
after
releasing
the
mutex
.
注意
,
在
释放
互斥
锁
之后
调用
pthread_cond_broadcast
。
www.ibm.com
1
2
3