changeset 98:efe50b1204f3 fuchita

Tree Node Test
author one
date Wed, 26 May 2010 13:19:45 +0900
parents 0ea086f0e96f
children e3a3bde37dff
files src/fdl/PSXLinda.java
diffstat 1 files changed, 5 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/src/fdl/PSXLinda.java	Wed May 26 10:49:50 2010 +0900
+++ b/src/fdl/PSXLinda.java	Wed May 26 13:19:45 2010 +0900
@@ -7,14 +7,6 @@
  * @author kono
  *
  */
-/**
- * @author kono
- *
- */
-/**
- * @author kono
- *
- */
 public interface PSXLinda {
 
 	
@@ -34,7 +26,7 @@
 	public void in(int id, PSXCallback callback);
 
 	/**
-	 * send Check request to the linda
+	 * send Check request to the Linda
 	 * Tuple with id will not be removed, it return even if there is no tuple for
 	 * this id
 	 * @param id
@@ -51,7 +43,7 @@
 
 	/**
 	 * send a Tuple to the linda
-	 * Tuple may stack in the linda, mutiple out is possible.
+	 * Tuple may stack in the linda, multiple out is possible.
 	 * No blocking.
 	 * this id
 	 * @param id
@@ -92,7 +84,7 @@
 
 	/**
 	 * Wait for newly incoming tuple for this id. 
-	 * Existing tuple is ingored.
+	 * Existing tuple is ignored.
 	 * Read the tuple in the linda, do not remove the tuple.
 	 * it return it's value
 	 * @param id
@@ -108,7 +100,7 @@
 	public void waitRd(int i, PSXCallback callback);
 	
 	/**
-	 * Send all registered reqests, and read incoming replies.
+	 * Send all registered requests, and read incoming replies.
 	 * No wait
 	 * @return
 	 * @throws IOException
@@ -116,7 +108,7 @@
 	public int sync() throws IOException ;
 
 	/**
-	 * Send all registered reqests, and read incoming replies.
+	 * Send all registered requests, and read incoming replies.
 	 * @param mtime     wait for mtime msec, if 0 this waits indefinitely.
 	 * @return
 	 * @throws IOException