* thread.h: Change class names, methods, members and local vars

according to the GNU coding style.
* thread.cc: Ditto.
* dcrt0.cc (dll_crt0_1): Rename pthread::initMainThread call to
pthread::init_mainthread.
* pthread.cc (pthead_getsequence_np): Rename pthread::isGoodObject
call to pthread::is_good_object.
This commit is contained in:
Thomas Pfaff
2003-03-27 19:52:20 +00:00
parent c65b504859
commit 15648790f4
5 changed files with 491 additions and 477 deletions

View File

@@ -73,7 +73,7 @@ pthread_continue (pthread_t thread)
unsigned long
pthread_getsequence_np (pthread_t * thread)
{
if (!pthread::isGoodObject (thread))
if (!pthread::is_good_object (thread))
return EINVAL;
return (*thread)->getsequence_np ();
}