communicator.java

来自「nachos操作系统框架」· Java 代码 · 共 42 行

JAVA
42
字号
package nachos.threads;import nachos.machine.*;/** * A <i>communicator</i> allows threads to synchronously exchange 32-bit * messages. Multiple threads can be waiting to <i>speak</i>, * and multiple threads can be waiting to <i>listen</i>. But there should never * be a time when both a speaker and a listener are waiting, because the two * threads can be paired off at this point. */public class Communicator {    /**     * Allocate a new communicator.     */    public Communicator() {    }    /**     * Wait for a thread to listen through this communicator, and then transfer     * <i>word</i> to the listener.     *     * <p>     * Does not return until this thread is paired up with a listening thread.     * Exactly one listener should receive <i>word</i>.     *     * @param	word	the integer to transfer.     */    public void speak(int word) {    }    /**     * Wait for a thread to speak through this communicator, and then return     * the <i>word</i> that thread passed to <tt>speak()</tt>.     *     * @return	the integer transferred.     */        public int listen() {	return 0;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?