use correct signal

This commit is contained in:
Jeff Hill
2002-10-30 01:13:08 +00:00
parent 2860ca9b51
commit 0e4addbc35

View File

@@ -117,7 +117,7 @@ epicsShareFunc void epicsShareAPI epicsSignalRaiseSigUrg
( struct epicsThreadOSD * threadId )
{
int status;
status = pthread_kill ( SIGPIPE, epicsThreadGetPosixThreadIdSelf ( threadId ) );
status = pthread_kill ( SIGURG, epicsThreadGetPosixThreadIdSelf ( threadId ) );
if ( status ) {
errlogPrintf ( "failed to send signal to another thread because - errno=\"%s\"\n",
strerror ( errno ) );