changed function name

This commit is contained in:
Jeff Hill
2002-10-24 15:38:19 +00:00
parent ea2d06560e
commit c7a8baee1a
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ epicsShareFunc void epicsShareAPI epicsSignalRaiseSigUrg
( struct epicsThreadOSD * threadId )
{
int status;
status = pthread_kill ( SIGPIPE, epicsThreadGetPthreadIdSelf ( threadId ) );
status = pthread_kill ( SIGPIPE, epicsThreadGetPosixThreadIdSelf ( threadId ) );
if ( status ) {
errlogPrintf ( "failed to send signal to another thread because %s\n",
strerror ( errno ) );
+1 -1
View File
@@ -469,7 +469,7 @@ epicsThreadId epicsThreadGetIdSelf(void) {
return(pthreadInfo);
}
pthread_t epicsThreadGetPthreadIdSelf ( epicsThreadPrivateId threadId )
pthread_t epicsThreadGetPosixThreadIdSelf ( epicsThreadPrivateId threadId )
{
struct epicsThreadOSD * pThreadInfo = threadId;
return pThreadInfo->tid;
+1 -1
View File
@@ -12,6 +12,6 @@
#include <pthread.h>
pthread_t epicsThreadGetPthreadIdSelf ( epicsThreadPrivateId id );
pthread_t epicsThreadGetPosixThreadIdSelf ( epicsThreadPrivateId id );
#endif /* osdThreadh */