summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/pthread.cc
diff options
context:
space:
mode:
authorThomas Pfaff <tpfaff@gmx.net>2003-03-27 19:52:20 +0000
committerThomas Pfaff <tpfaff@gmx.net>2003-03-27 19:52:20 +0000
commit15648790f40364868d80c6f861754d0852906719 (patch)
tree924d351d428ef29fa82c7fc965f309c174e943e5 /winsup/cygwin/pthread.cc
parentc65b50485943ce4e766e0fe926b3713fc2bdb65b (diff)
downloadcygnal-15648790f40364868d80c6f861754d0852906719.tar.gz
cygnal-15648790f40364868d80c6f861754d0852906719.tar.bz2
cygnal-15648790f40364868d80c6f861754d0852906719.zip
* 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.
Diffstat (limited to 'winsup/cygwin/pthread.cc')
-rw-r--r--winsup/cygwin/pthread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pthread.cc b/winsup/cygwin/pthread.cc
index cf485d4ea..57b746ba5 100644
--- a/winsup/cygwin/pthread.cc
+++ b/winsup/cygwin/pthread.cc
@@ -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 ();
}