removed EPICS_V2 and V5vxWorks definitions

This commit is contained in:
Marty Kraimer
1993-08-11 16:43:05 +00:00
parent ec06199166
commit 6e79e7fded
3 changed files with 4 additions and 48 deletions

View File

@@ -30,6 +30,7 @@
* .02 09-05-91 joh updated for v5 vxWorks; included systime.h for utime.h
* .03 12-08-91 rac added a comment for ezsFopenToFd
* .04 10-09-92 rac use SO_REUSEADDR with socket
* .05 08-11-93 mrk removed V5_vxWorks
*
* make options
* -DvxWorks makes a version for VxWorks
@@ -74,11 +75,7 @@
# include <ioLib.h>
# include <taskLib.h>
# include <types.h>
# ifdef V5_vxWorks
# include <systime.h>
# else
# include <utime.h>
# endif
# include <systime.h>
# include <socket.h>
# include <inetLib.h>
# include <in.h>

View File

@@ -28,6 +28,7 @@
* .00 03-29-90 rac initial version
* .01 06-18-91 rac installed in SCCS
* .02 01-29-92 rac added wildMatch function
* .03 08-11-93 mrk removed ifdef V5_vxWorks
*
* make options
* -DvxWorks makes a version for VxWorks
@@ -327,27 +328,6 @@ void (* handler)(); /* I pointer to signal handler */
(void)signal(SIGPIPE, handler); /* write to disconnected socket */
}
#ifdef vxWorks
#ifndef V5_vxWorks
/*+/subr**********************************************************************
* NAME perror - print message corresponding to errno
*
* DESCRIPTION
* Under VxWorks, provides the capability provided by perror() under
* UNIX. (This routine isn't present in genLib except for VxWorks
* version.)
*
*-*/
perror(str)
char *str; /* I string to print in conjunction with error message */
{
if (str != NULL)
(void)printf("%s: ", str);
printErrno(0);
}
#endif
#endif
int doMatch();
/*+/subr**********************************************************************

View File

@@ -34,6 +34,7 @@
* .00 02-03-90 rac initial version
* .01 06-18-91 rac installed in SCCS
* .02 06-28-91 rac don't do lwp_fpset for sun4
* .03 08-11-93 mrk removed ifdef V5_vxWorks
*
* make options
* -DvxWorks makes a version for VxWorks
@@ -98,28 +99,6 @@
return OK;
}
#endif
/*-----------------------------------------------------------------------------
* signal()
*----------------------------------------------------------------------------*/
#ifdef vxWorks
#ifndef V5_vxWorks
FUNCPTR signal(sig, func)
int sig;
FUNCPTR func;
{
struct sigvec vec;
struct sigvec ovec;
vec.sv_handler = func;
if (sigvec(sig, &vec, &ovec) == -1)
return (FUNCPTR)(-1);
return ovec.sv_handler;
}
#endif
#endif
/*----------------------------------------------------------------------------
* taskSpawn()
*---------------------------------------------------------------------------*/