* thread.cc: Minor whitespace cleanup. Remove some obsolete code.

This commit is contained in:
Christopher Faylor 2003-11-25 22:55:31 +00:00
parent 84f08ba160
commit e2b9eb11e5
2 changed files with 7 additions and 17 deletions

View File

@ -1,3 +1,7 @@
2003-11-25 Christopher Faylor <cgf@redhat.com>
* thread.cc: Minor whitespace cleanup. Remove some obsolete code.
2003-11-24 Christopher Faylor <cgf@redhat.com> 2003-11-24 Christopher Faylor <cgf@redhat.com>
* dtable.cc (build_fh_name): Set error in dummy fhandler when one is * dtable.cc (build_fh_name): Set error in dummy fhandler when one is

View File

@ -336,7 +336,8 @@ pthread::create (void *(*func) (void *), pthread_attr *newattr,
thread_printf ("CreateThread failed: this %p LastError %E", this); thread_printf ("CreateThread failed: this %p LastError %E", this);
magic = 0; magic = 0;
} }
else { else
{
postcreate (); postcreate ();
ResumeThread (win32_obj_id); ResumeThread (win32_obj_id);
} }
@ -2902,11 +2903,6 @@ pthread_kill (pthread_t thread, int sig)
if (!pthread::is_good_object (&thread)) if (!pthread::is_good_object (&thread))
return EINVAL; return EINVAL;
#if 0
if (thread->sigs)
myself->setthread2signal (thread);
#endif
int rval = raise (sig); int rval = raise (sig);
// unlock myself // unlock myself
@ -2916,16 +2912,6 @@ pthread_kill (pthread_t thread, int sig)
extern "C" int extern "C" int
pthread_sigmask (int operation, const sigset_t *set, sigset_t *old_set) pthread_sigmask (int operation, const sigset_t *set, sigset_t *old_set)
{ {
#if 0
pthread *thread = pthread::self ();
// lock this myself, for the use of thread2signal
// two differt kills might clash: FIXME
if (thread->sigs)
myself->setthread2signal (thread);
#endif
int rval = sigprocmask (operation, set, old_set); int rval = sigprocmask (operation, set, old_set);
// unlock this myself // unlock this myself