forked from Imagelibrary/rtems
Add thread parameter to _Thread_queue_Enqueue_with_handler() to avoid access to global _Thread_Executing.
183 lines
4.2 KiB
C
183 lines
4.2 KiB
C
/**
|
|
* @file
|
|
*
|
|
* @brief Wait for Queued Signals
|
|
* @ingroup POSIXAPI
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 1989-2008.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <pthread.h>
|
|
#include <signal.h>
|
|
#include <errno.h>
|
|
|
|
#include <rtems/posix/pthreadimpl.h>
|
|
#include <rtems/posix/psignalimpl.h>
|
|
#include <rtems/score/threadqimpl.h>
|
|
#include <rtems/seterr.h>
|
|
#include <rtems/posix/time.h>
|
|
#include <rtems/score/isr.h>
|
|
|
|
static int _POSIX_signals_Get_lowest(
|
|
sigset_t set
|
|
)
|
|
{
|
|
int signo;
|
|
|
|
for ( signo = SIGRTMIN ; signo <= SIGRTMAX ; signo++ ) {
|
|
if ( set & signo_to_mask( signo ) ) {
|
|
goto found_it;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* We assume SIGHUP == 1 and is the first non-real-time signal.
|
|
*/
|
|
|
|
#if (SIGHUP != 1)
|
|
#error "Assumption that SIGHUP==1 violated!!"
|
|
#endif
|
|
for ( signo = SIGHUP ; signo <= __SIGLASTNOTRT ; signo++ ) {
|
|
if ( set & signo_to_mask( signo ) ) {
|
|
goto found_it;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* This is structured this way to eliminate the need to have
|
|
* a return 0. This routine will NOT be called unless a signal
|
|
* is pending in the set passed in.
|
|
*/
|
|
found_it:
|
|
return signo;
|
|
}
|
|
|
|
/**
|
|
* 3.3.8 Synchronously Accept a Signal, P1003.1b-1993, p. 76
|
|
*/
|
|
int sigtimedwait(
|
|
const sigset_t *set,
|
|
siginfo_t *info,
|
|
const struct timespec *timeout
|
|
)
|
|
{
|
|
Thread_Control *executing;
|
|
POSIX_API_Control *api;
|
|
Watchdog_Interval interval;
|
|
siginfo_t signal_information;
|
|
siginfo_t *the_info;
|
|
int signo;
|
|
ISR_Level level;
|
|
|
|
/*
|
|
* Error check parameters before disabling interrupts.
|
|
*/
|
|
if ( !set )
|
|
rtems_set_errno_and_return_minus_one( EINVAL );
|
|
|
|
/* NOTE: This is very specifically a RELATIVE not ABSOLUTE time
|
|
* in the Open Group specification.
|
|
*/
|
|
|
|
interval = 0;
|
|
if ( timeout ) {
|
|
|
|
if ( !_Timespec_Is_valid( timeout ) )
|
|
rtems_set_errno_and_return_minus_one( EINVAL );
|
|
|
|
interval = _Timespec_To_ticks( timeout );
|
|
|
|
if ( !interval )
|
|
rtems_set_errno_and_return_minus_one( EINVAL );
|
|
}
|
|
|
|
/*
|
|
* Initialize local variables.
|
|
*/
|
|
|
|
the_info = ( info ) ? info : &signal_information;
|
|
|
|
executing = _Thread_Get_executing();
|
|
api = executing->API_Extensions[ THREAD_API_POSIX ];
|
|
|
|
/*
|
|
* What if they are already pending?
|
|
*/
|
|
|
|
/* API signals pending? */
|
|
|
|
_ISR_Disable( level );
|
|
if ( *set & api->signals_pending ) {
|
|
/* XXX real info later */
|
|
the_info->si_signo = _POSIX_signals_Get_lowest( api->signals_pending );
|
|
_POSIX_signals_Clear_signals(
|
|
api,
|
|
the_info->si_signo,
|
|
the_info,
|
|
false,
|
|
false
|
|
);
|
|
_ISR_Enable( level );
|
|
|
|
the_info->si_code = SI_USER;
|
|
the_info->si_value.sival_int = 0;
|
|
return the_info->si_signo;
|
|
}
|
|
|
|
/* Process pending signals? */
|
|
|
|
if ( *set & _POSIX_signals_Pending ) {
|
|
signo = _POSIX_signals_Get_lowest( _POSIX_signals_Pending );
|
|
_POSIX_signals_Clear_signals( api, signo, the_info, true, false );
|
|
_ISR_Enable( level );
|
|
|
|
the_info->si_signo = signo;
|
|
the_info->si_code = SI_USER;
|
|
the_info->si_value.sival_int = 0;
|
|
return signo;
|
|
}
|
|
|
|
the_info->si_signo = -1;
|
|
|
|
_Thread_Disable_dispatch();
|
|
executing->Wait.queue = &_POSIX_signals_Wait_queue;
|
|
executing->Wait.return_code = EINTR;
|
|
executing->Wait.option = *set;
|
|
executing->Wait.return_argument = the_info;
|
|
_Thread_queue_Enter_critical_section( &_POSIX_signals_Wait_queue );
|
|
_ISR_Enable( level );
|
|
_Thread_queue_Enqueue( &_POSIX_signals_Wait_queue, executing, interval );
|
|
_Thread_Enable_dispatch();
|
|
|
|
/*
|
|
* When the thread is set free by a signal, it is need to eliminate
|
|
* the signal.
|
|
*/
|
|
|
|
_POSIX_signals_Clear_signals( api, the_info->si_signo, the_info, false, false );
|
|
|
|
/* Set errno only if return code is not EINTR or
|
|
* if EINTR was caused by a signal being caught, which
|
|
* was not in our set.
|
|
*/
|
|
|
|
if ( (executing->Wait.return_code != EINTR)
|
|
|| !(*set & signo_to_mask( the_info->si_signo )) ) {
|
|
errno = executing->Wait.return_code;
|
|
return -1;
|
|
}
|
|
|
|
return the_info->si_signo;
|
|
}
|