diff options
author | Thomas Pfaff <tpfaff@gmx.net> | 2003-03-27 19:52:20 +0000 |
---|---|---|
committer | Thomas Pfaff <tpfaff@gmx.net> | 2003-03-27 19:52:20 +0000 |
commit | 15648790f40364868d80c6f861754d0852906719 (patch) | |
tree | 924d351d428ef29fa82c7fc965f309c174e943e5 /winsup/cygwin/dcrt0.cc | |
parent | c65b50485943ce4e766e0fe926b3713fc2bdb65b (diff) | |
download | cygnal-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/dcrt0.cc')
-rw-r--r-- | winsup/cygwin/dcrt0.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc index 9da8111ec..9ae2e5345 100644 --- a/winsup/cygwin/dcrt0.cc +++ b/winsup/cygwin/dcrt0.cc @@ -631,7 +631,7 @@ dll_crt0_1 () ProtectHandle (hMainThread); cygthread::init (); - pthread::initMainThread (!user_data->forkee); + pthread::init_mainthread (!user_data->forkee); /* Initialize debug muto, if DLL is built with --enable-debugging. Need to do this before any helper threads start. */ |