summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Slee <mcslee@apache.org>2007-04-04 19:56:41 +0000
committerMark Slee <mcslee@apache.org>2007-04-04 19:56:41 +0000
commit09bfd615301dd2af23d6f251f6334a3e149d5b99 (patch)
tree0100e4a21ab21dee64181f8f9731f26e8a883f8d /doc
parentafaf27607d24de7f494a7823d38b2c8a31878934 (diff)
downloadthrift-09bfd615301dd2af23d6f251f6334a3e149d5b99.tar.gz
Two more thrift paper typos
Summary: libthread => libpthread and texttt{HashMap} missing slash Reviewed By: david reiss git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'doc')
-rw-r--r--doc/thrift.pdfbin121180 -> 121173 bytes
-rw-r--r--doc/thrift.tex4
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/thrift.pdf b/doc/thrift.pdf
index 8aba919e8..e7c690b86 100644
--- a/doc/thrift.pdf
+++ b/doc/thrift.pdf
Binary files differ
diff --git a/doc/thrift.tex b/doc/thrift.tex
index d93bfa382..b0838f468 100644
--- a/doc/thrift.tex
+++ b/doc/thrift.tex
@@ -197,7 +197,7 @@ contain duplicates.
an STL \texttt{set}, Java \texttt{HashSet}, \texttt{set} in Python, or native
dictionary in PHP/Ruby.
\item \texttt{map<type1,type2>} A map of strictly unique keys to values
-Translates into an STL \texttt{map}, Java texttt{HashMap}, PHP associative
+Translates into an STL \texttt{map}, Java \texttt{HashMap}, PHP associative
array, or Python/Ruby dictionary.
\end{itemize}
@@ -863,7 +863,7 @@ be accessed by multiple threads. For \texttt{Thread} class implementations,
creating and shutting down threads.
Thread creation requires calling into a C library. (In our case the POSIX
-thread library, \texttt{libthread}, but the same would be true for WIN32 threads).
+thread library, \texttt{libpthread}, but the same would be true for WIN32 threads).
Typically, the OS makes few, if any, guarantees about when \texttt{ThreadMain}, a C thread's entry-point function, will be called. Therefore, it is
possible that our thread create call,
\texttt{ThreadFactory::newThread()} could return to the caller