[Python-checkins] CVS: python/dist/src/Python thread_nt.h,2.7,2.8
Guido van Rossum
python-dev@python.org
Fri, 5 May 2000 10:30:02 -0400 (EDT)
Update of /projects/cvsroot/python/dist/src/Python
In directory eric:/projects/python/develop/guido/src/Python
Modified Files:
thread_nt.h
Log Message:
Quick fix by Mark Hammond -- Yakov changed a dprintf call but it was
referencing an undefined variable, so we better change it back.
Index: thread_nt.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/thread_nt.h,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** thread_nt.h 2000年05月04日 18:47:15 2.7
--- thread_nt.h 2000年05月05日 14:29:59 2.8
***************
*** 168,172 ****
if (rv != -1) {
success = 1;
! dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), aThreadId));
}
--- 168,172 ----
if (rv != -1) {
success = 1;
! dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), rv));
}