diff options
author | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
commit | 335556d58b52396f1f133033856bf6be397a29b8 (patch) | |
tree | ecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/perthread.h | |
parent | ad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff) | |
download | cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.gz cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2 cygnal-335556d58b52396f1f133033856bf6be397a29b8.zip |
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/perthread.h')
-rw-r--r-- | winsup/cygwin/perthread.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/perthread.h b/winsup/cygwin/perthread.h index 60c78f3ea..cfca5ae31 100644 --- a/winsup/cygwin/perthread.h +++ b/winsup/cygwin/perthread.h @@ -42,8 +42,8 @@ class per_thread_waitq : public per_thread { public: per_thread_waitq () : per_thread (0) {} - void *get () {return (waitq *) this->per_thread::get ();} - void *create () {return (waitq *) this->per_thread::create ();} + void *get () {return (waitq *) per_thread::get ();} + void *create () {return (waitq *) per_thread::create ();} size_t size () {return sizeof (waitq);} }; @@ -77,8 +77,8 @@ class vfork_save class per_thread_vfork : public per_thread { public: - vfork_save *val () { return (vfork_save *) this->per_thread::get (); } - vfork_save *create () {return (vfork_save *) this->per_thread::create ();} + vfork_save *val () { return (vfork_save *) per_thread::get (); } + vfork_save *create () {return (vfork_save *) per_thread::create ();} size_t size () {return sizeof (vfork_save);} }; extern per_thread_vfork vfork_storage; @@ -102,8 +102,8 @@ struct signal_dispatch struct per_thread_signal_dispatch : public per_thread { - signal_dispatch *get () { return (signal_dispatch *) this->per_thread::get (); } - signal_dispatch *create () {return (signal_dispatch *) this->per_thread::create ();} + signal_dispatch *get () { return (signal_dispatch *) per_thread::get (); } + signal_dispatch *create () {return (signal_dispatch *) per_thread::create ();} size_t size () {return sizeof (signal_dispatch);} }; |