libpthread patch

David Xu davidxu at freebsd.org
Tue Apr 15 18:36:20 PDT 2003


----- Original Message ----- 
From: "Daniel Eischen" <eischen at pcnet1.pcnet.com>
To: "David Xu" <davidxu at freebsd.org>
Cc: <freebsd-threads at freebsd.org>; "Craig Rodrigues" <rodrigc at attbi.com>
Sent: Wednesday, April 16, 2003 5:26 AM
Subject: Re: libpthread patch


> There's an updated patch file available at (a slightly different place):
> 
>     http://people.freebsd.org/~deischen/kse/libpthread.diffs
> 

Will test it.

> There's also an html'ized log of the ACE tests:
> 
>     http://people.freebsd.org/~deischen/kse/ace_build_logs/index.html
> 
> The only real problems seem to be with the ACE tests:
> 
>     Cached_Conn_Test
>     Process_Manager_Test
> 
> And I think these have something to do with wait() or waitpid()
> not working correctly.  David, do you know of any problems in
> this area?  It seems that sometimes waitpid() is returning 0
> and the next time it is called it returns the process id.
> I wonder if it is being interrupted by a signal (either the
> kernel doing it or the UTS by use of kse_thr_interrupt)?
> 

Remember current signal handling for threaded program is
broken in kernel, any signal can be lost in kernel because
of thread exiting, for our M:N based threaded process, the
case is worse than 1:1 because we exit thread more often than
1:1 threading, so any signal related tests will frequently
be failed. some code in ACE I find :
    for (;;)
    {
      int result = ACE_OS::waitpid (this->getpid (),
                                    status,
                                    WNOHANG);
      if (result != 0)
        return result;
      
      ACE_Sig_Set alarm_or_child;
      
      alarm_or_child.sig_add (SIGALRM);
      alarm_or_child.sig_add (SIGCHLD);
      ACE_Time_Value time_left = wait_until - ACE_OS::gettimeofday ();
      
      // If ACE_OS::ualarm doesn't have sub-second resolution:
      time_left += ACE_Time_Value (0, 500000);
      time_left.usec (0);
      
      if (time_left <= ACE_Time_Value::zero)
        return 0; // timeout

      ACE_OS::ualarm (time_left);
      if (ACE_OS::sigwait (alarm_or_child) == -1)
        return ACE_INVALID_PID;
    }
...
so you see, the code expects SIGCHLD and SIGALRM, if
SIGCHLD lost, it would timeout and return 0;
I did not find waitpid has bug.

BTW, I have a patch for kse_release to let it direct
return to userland and not schedule an upcall.
the bit 0 of km_flags in kse_mailbox is used as a hint
to tell kernel not to schedule an upcall for the kse.
http://people.freebsd.org/~davidxu/kse_release.diff

If nobody objects it, I will commit it.

David Xu




More information about the freebsd-threads mailing list