From: Mark Slee Date: Wed, 4 Apr 2007 19:56:41 +0000 (+0000) Subject: Two more thrift paper typos X-Git-Tag: 0.2.0~1389 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=09bfd615301dd2af23d6f251f6334a3e149d5b99;p=common%2Fthrift.git 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 --- diff --git a/doc/thrift.pdf b/doc/thrift.pdf index 8aba919e..e7c690b8 100644 Binary files a/doc/thrift.pdf and b/doc/thrift.pdf differ diff --git a/doc/thrift.tex b/doc/thrift.tex index d93bfa38..b0838f46 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} 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