码迷,mamicode.com
首页 >  
搜索关键字:communication    ( 811个结果
同步与异步
同步与异步同步和异步关注的是消息通信机制 (synchronous communication/ asynchronous communication)所谓同步,就是在发出一个*调用*时,在没有得到结果之前,该*调用*就不返回。但是一旦调用返回,就得到返回值了。换句话说,就是由*调用者*主动等待这个 ...
分类:其他好文   时间:2019-07-01 00:40:19    阅读次数:115
IPC之套接字
IPC(Inter-Process Communication,进程间通信)实现方式 1)管道: - 管道是一种半双工的通信方式,数据只能单向流动,而且只能在具有亲缘关系的进程之间使用(进程的亲缘关系通常是指父子进程关系) 2)有名管道(FIFO): - 有名管道也是半双工的通信方式,但是允许在没有 ...
分类:其他好文   时间:2019-06-28 18:20:14    阅读次数:129
characteristics of competent communicators
https://www.universalclass.com/articles/business/communication-studies/be-a-competent-communicator.htm Researchers have broken down the characteristic ...
分类:其他好文   时间:2019-06-27 16:36:10    阅读次数:109
第八讲 IPC之信号量
IPC 一、进程(线程)之间的通信(Internal Process Communication, IPC) 在嵌入式系统中运行的代码主要包括线程和ISR,在他们的运行过程中,他们的运行步骤有时需要同步(按照预定的先后次序运行),他们访问的资源有时需要互斥(一个时刻只允许一个线程访问资源),他们之间 ...
分类:其他好文   时间:2019-06-06 20:47:54    阅读次数:118
Mysql Lost connection to MySQL server at ‘reading initial communication packet', system error: 0
在用Navicat for MySQL远程连接mysql的时候,出现了 Lost connection to MySQL server at ‘reading initial communication packet', system error: 0 修改my.cnf文件(windows为my.i ...
分类:数据库   时间:2019-06-03 14:20:40    阅读次数:237
[Computer Networking] {CMU14-740} Lecture 9: The Transport Layer; UDP
This is the first lecture in a series exploring the Transport layer. This layer is responsible for logical communication between applications running ...
分类:Web程序   时间:2019-06-03 12:41:33    阅读次数:137
作文范文《Good Communication Is the Best Policy》
Good Communication Is the Best Policy The relationship between parents and children might be different at different ages.And for young people at their ...
分类:其他好文   时间:2019-05-28 00:46:31    阅读次数:872
[Operating System] {ud923} P3L3: Inter-Process Communication
Visual Metaphor Inter Process Communication Message Based IPC Forms of Message Passing Shared Memory IPC Copy vs. Map In windows: (1), data size small ...
分类:其他好文   时间:2019-05-25 09:36:49    阅读次数:157
IO中同步与异步,阻塞与非阻塞区别(转)
同步和异步关注的是消息通信机制 (synchronous communication/asynchronous communication) 同步请求,A调用B,B的处理是同步的,在处理完之前他不会通知A,只有处理完之后才会明确的通知A。 异步请求,A调用B,B的处理是异步的,B在接到请求后先告诉A ...
分类:其他好文   时间:2019-05-24 12:56:55    阅读次数:103
Python网络编程
网络编程 # notes 要点网络编程 客户端/服务器架构 客户端/服务器网络编程 套接字是计算机网络数据结构。在任何类型的通信开始之前,网络应用程序必须创建套接字。可以将它们比作电话插孔,没有它将无法进行通信。 进程间通信(Inter Process Communication) 地址家族(add ...
分类:编程语言   时间:2019-05-04 17:32:56    阅读次数:157
811条   上一页 1 ... 8 9 10 11 12 ... 82 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!