2000-05-01 Mirko Viviani <mirko.viviani@rccr.cremona.it>

* GSWDebug.m: commented code for the new NSThread implementation.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@6540 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mirko 2000-05-01 17:19:54 +00:00
parent b01e13815a
commit 87adb4b214
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2000-05-01 Mirko Viviani <mirko.viviani@rccr.cremona.it>
* GSWDebug.m: commented code for the new NSThread implementation.
2000-04-20 Karl Kraft <karl@nfox.com>
* Removed assignments to va_list because they don't work on PPC

View file

@ -51,9 +51,11 @@ void GSWLogC_(CONST char* file,int line,CONST char* string)
{
NSThread* t = [NSThread currentThread];
fprintf(stderr,"TID=");
#if 0
if (t && t->_thread_id)
fprintf(stderr,"%p [%ld] (%d) ",(void*)t->_thread_id,(long)t->_thread_id,(int)getpid());
else
#endif
{
void* tid=(void*)objc_thread_id();
fprintf(stderr,"%p [%ld] (%d) ",tid,(long)tid,(int)getpid());