# This is a shell archive. # Remove everything above and including the cut line. # Then run the rest of the file through sh. #----cut here-----cut here-----cut here-----cut here----# #!/bin/sh # shar: Shell Archiver # Run the following text with /bin/sh to create: # routeLib.h.patch # rpcLib.h.patch # rt11Lib.h.patch # rt11ULib.h.patch # semLib.h.patch # sigLib.h.patch # socket.h.patch # stdioLib.h.patch # strLib.h.patch # symLib.h.patch # sysLib.h.patch # taskLib.h.patch # taskVarLib.h.patch # telnetLib.h.patch # tyLib.h.patch # vxWorks.h.patch # wdLib.h.patch # This archive created: Mon Jun 18 09:19:22 1990 echo shar: extracting routeLib.h.patch '(606 characters)' sed 's/^X//' << \SHAR_EOF > routeLib.h.patch X*** ../old/routeLib.h Tue Apr 3 14:13:29 1990 X--- routeLib.h Tue Apr 3 14:09:00 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01b,16nov87,llk documentation X 01a,01nov87,llk written X */ X*************** X*** 20,27 **** X X /* function declarations */ X X! STATUS routeAdd (); X! STATUS routeDelete (); X! VOID routeShow (); X X #endif X--- 21,28 ---- X X /* function declarations */ X X! IMPORT STATUS routeAdd (char *, char *); X! IMPORT STATUS routeDelete (char *, char *); X! IMPORT VOID routeShow (void); X X #endif SHAR_EOF if test 606 -ne "`wc -c routeLib.h.patch`" then echo shar: error transmitting routeLib.h.patch '(should have been 606 characters)' fi echo shar: extracting rpcLib.h.patch '(626 characters)' sed 's/^X//' << \SHAR_EOF > rpcLib.h.patch X*** ../old/rpcLib.h Tue Apr 3 14:13:30 1990 X--- rpcLib.h Tue Apr 3 14:09:00 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn ANSI-fied. X 01a,16nov88,llk written. X */ X X*************** X*** 33,37 **** X--- 34,42 ---- X #define S_rpcLib_RPC_PMAPFAILURE (M_rpcClntStat | (int) RPC_PMAPFAILURE) X #define S_rpcLib_RPC_PROGNOTREGISTERED (M_rpcClntStat | (int) RPC_PROGNOTREGISTERED) X #define S_rpcLib_RPC_FAILED (M_rpcClntStat | (int) RPC_FAILED) X+ X+ /* Functions */ X+ IMPORT STATUS rpcInit(void); X+ IMPORT STATUS rpcTaskInit(void); X X #endif INCrpcLibh SHAR_EOF if test 626 -ne "`wc -c rpcLib.h.patch`" then echo shar: error transmitting rpcLib.h.patch '(should have been 626 characters)' fi echo shar: extracting rt11Lib.h.patch '(1199 characters)' sed 's/^X//' << \SHAR_EOF > rt11Lib.h.patch X*** ../old/rt11Lib.h Tue Apr 3 14:13:30 1990 X--- rt11Lib.h Tue Apr 3 14:09:01 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn ANSI-fied. X 01w,05jun88,dnw changed rtLib to rt11Lib. X 01v,30may88,dnw changed to v4 names. X 01u,04may88,jcf changed SEMAPHORE to SEM_ID. X*************** X*** 184,191 **** X X X /* function declarations */ X! X! RT_FILE_DESC *rt11Create (); X! RT_FILE_DESC *rt11Open (); X X #endif X--- 185,202 ---- X X X /* function declarations */ X! IMPORT STATUS rt11Close(RT_FILE_DESC *); X! IMPORT RT_FILE_DESC *rt11Create(RT_VOL_DESC *, char *, int); X! IMPORT void rt11DateSet(int, int, int); X! IMPORT STATUS rt11Delete(RT_VOL_DESC *, char *); X! IMPORT STATUS rt11DevInit(RT_VOL_DESC *, int, int, int, BOOL, int, FUNCPTR, X! FUNCPTR, FUNCPTR); X! IMPORT STATUS rt11Init(int); X! IMPORT STATUS rt11Ioctl(RT_FILE_DESC *, int, int); X! IMPORT void rt11ModeChange(RT_VOL_DESC *, int); X! IMPORT RT_FILE_DESC *rt11Open(RT_VOL_DESC *, char *, int); X! IMPORT int rt11Read(RT_FILE_DESC *, char *, int); X! IMPORT void rt11ReadyChange(RT_VOL_DESC *); X! IMPORT int rt11Write(RT_FILE_DESC *, char *, int); X X #endif SHAR_EOF if test 1199 -ne "`wc -c rt11Lib.h.patch`" then echo shar: error transmitting rt11Lib.h.patch '(should have been 1199 characters)' fi echo shar: extracting rt11ULib.h.patch '(27 characters)' sed 's/^X//' << \SHAR_EOF > rt11ULib.h.patch XNo differences encountered SHAR_EOF if test 27 -ne "`wc -c rt11ULib.h.patch`" then echo shar: error transmitting rt11ULib.h.patch '(should have been 27 characters)' fi echo shar: extracting semLib.h.patch '(753 characters)' sed 's/^X//' << \SHAR_EOF > semLib.h.patch X*** ../old/semLib.h Tue Apr 3 14:13:32 1990 X--- semLib.h Tue Apr 3 14:09:01 1990 X*************** X*** 3,13 **** X--- 3,15 ---- X /* X modification history X -------------------- X+ 02a,10jan90,rekn modified for ansi C X 01c,23apr88,jcf changed to allow for different semaphore implementations X 01b,27jan84,ecs added inclusion test. X 01a,15nov83,ecs written X */ X X+ #include "vxWorks.h" X #include "lstLib.h" X X #ifndef INCsemLibh X*************** X*** 27,32 **** X X /* forward declarations */ X X! SEM_ID semCreate (); X X #endif X--- 29,39 ---- X X /* forward declarations */ X X! SEM_ID semCreate(void); X! void semGive(SEM_ID); X! void semTake(SEM_ID); X! void semDelete(SEM_ID); X! void semInit(SEM_ID); X! STATUS semClear(SEM_ID); X X #endif SHAR_EOF if test 753 -ne "`wc -c semLib.h.patch`" then echo shar: error transmitting semLib.h.patch '(should have been 753 characters)' fi echo shar: extracting sigLib.h.patch '(828 characters)' sed 's/^X//' << \SHAR_EOF > sigLib.h.patch X*** ../old/sigLib.h Tue Apr 3 14:13:33 1990 X--- sigLib.h Tue Apr 3 14:09:02 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01e,01jul88,rdc changed SEM_ID's back to SEMAPHORE's. X 01d,17jun88,rdc added sigMaskSem to TASK_SIGNAL_INFO. X 01c,29may88,dnw added status valude S_sigLib_NO_HANDLER_FOR_SIGNAL. X*************** X*** 157,161 **** X--- 158,174 ---- X } TASK_SIGNAL_INFO; X X /* END_HIDDEN */ X+ X+ /*functions */ X+ X+ IMPORT STATUS kill(int, int); X+ IMPORT STATUS pause(void); X+ X+ IMPORT STATUS sigInit(void); X+ IMPORT STATUS sigRaise(int, int, int); X+ IMPORT int sigblock(int); X+ IMPORT int sigmaskset(int); X+ IMPORT STATUS sigstack(SIGSTACK *, SIGSTACK *); X+ IMPORT STATUS sigvec(int, SIGVEC *, SIGVEC *); X X #endif INCsigLibh SHAR_EOF if test 828 -ne "`wc -c sigLib.h.patch`" then echo shar: error transmitting sigLib.h.patch '(should have been 828 characters)' fi echo shar: extracting socket.h.patch '(1378 characters)' sed 's/^X//' << \SHAR_EOF > socket.h.patch X*** socket.h Mon Jun 18 09:08:04 1990 X--- /vx/h/ansi/socket.h Tue Jun 12 08:38:45 1990 X*************** X*** 13,18 **** X--- 13,19 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01d,29apr87,dnw added header and copyright. X 01c,02apr87,ecs added typedef of SOCKADDR X 01b,21dec86,dnw added include of types.h X*************** X*** 162,165 **** X--- 163,187 ---- X #define MSG_DONTROUTE 0x4 /* send without using routing tables */ X X #define MSG_MAXIOVLEN 16 X+ X+ /* functions */ X+ X+ IMPORT int accept(int, SOCKADDR *, int *); X+ IMPORT STATUS bind(int, SOCKADDR *, int); X+ IMPORT STATUS connect(int, SOCKADDR *, int); X+ IMPORT STATUS getpeername(int, SOCKADDR *, int *); X+ IMPORT STATUS getsockname(int, SOCKADDR *, int *); X+ IMPORT STATUS listen(int, int); X+ IMPORT int recv(int, caddr_t buf, int, int); X+ IMPORT int recvfrom(int, caddr_t, int, int, struct sockaddr *, int *); X+ IMPORT int recvmsg(int, struct msghdr *, int); X+ IMPORT STATUS shutdown(int, int); X+ IMPORT int select(int, fd_set *, fd_set *, fd_set *, struct timeval *); X+ IMPORT void selectDelaySet(int); X+ IMPORT int send(int, caddr_t, int, int); X+ IMPORT int sendmsg(int, struct msghdr *, int); X+ IMPORT int sendto(int, caddr_t, int, int, struct sockaddr *, int); X+ IMPORT STATUS setsockopt(int, int, int, char *, int); X+ IMPORT int socket(int, int, int); X+ X #endif SHAR_EOF if test 1378 -ne "`wc -c socket.h.patch`" then echo shar: error transmitting socket.h.patch '(should have been 1378 characters)' fi echo shar: extracting stdioLib.h.patch '(2775 characters)' sed 's/^X//' << \SHAR_EOF > stdioLib.h.patch X*** /vx/h/stdioLib.h Thu May 25 18:06:50 1989 X--- stdioLib.h Mon Jun 18 09:11:39 1990 X*************** X*** 3,8 **** X--- 3,10 ---- X /* X modification history X -------------------- X+ 02a,17jan90,rekn modified for ansi prototypes & moved sprintf proto to X+ fioLib.h. X 01a,28mar88,gae created. X */ X X*************** X*** 24,29 **** X--- 26,32 ---- X int taskId; /* id of task that created this entity */ X } FILE; X X+ X /* flag values */ X X #define _STDIO_READ 0x01 X*************** X*** 70,81 **** X IMPORT FILE *stdout; /* standard output task variable */ X IMPORT FILE *stderr; /* standard error task variable */ X X! IMPORT FILE *fopen (); X! IMPORT FILE *fdopen (); X! IMPORT FILE *freopen (); X! IMPORT long ftell (); X! IMPORT char *fgets (); X! IMPORT char *gets (); X! IMPORT char *sprintf (); X X #endif INCstdioLibh X--- 73,110 ---- X IMPORT FILE *stdout; /* standard output task variable */ X IMPORT FILE *stderr; /* standard error task variable */ X X! IMPORT void stdioInit(void); /* initialize stdioLib */ X! X! X! IMPORT FILE *fdopen(int, char*); /* open stream on file descriptor */ X! IMPORT int fflush(FILE *); /* flush output stream */ X! IMPORT int fgetc(FILE *); /* get next character */ X! IMPORT char *fgets(char *, int, FILE *); /* read a string */ X! IMPORT FILE *fopen(char *, char *); /* open a stream */ X! IMPORT int fprintf(FILE *, char *, ...); /* printf on stream */ X! IMPORT int fputc(int, FILE *); /* write on stream */ X! IMPORT int fputs(char *, FILE *); /* put string on stream */ X! IMPORT int fread(char *ptr, unsigned , unsigned, FILE *); /* buffered */ X! /* read */ X! IMPORT FILE *freopen(char *, char *, FILE *); /* swap files on stream */ X! /* */ X! IMPORT int fscanf(FILE *, char *, ...); /* read and convert */ X! IMPORT STATUS fseek(FILE *, long, int); /* position in stream */ X! IMPORT long ftell(FILE *); /* return current offset in stream */ X! IMPORT int fwrite(char *, unsigned, unsigned, FILE *); /* binary write */ X! /* */ X! IMPORT char *gets(char *); /* read string from stdin */ X! IMPORT int getw(FILE *); /* read 32 bits from stream */ X! IMPORT BOOL isatty(int); /* tty device? */ X! IMPORT int puts(char *); /* fputs to stdout */ X! IMPORT int putw(int, FILE *); /* write 32 bits to stream */ X! IMPORT void rewind(FILE *); /* reposition to start of stream */ X! IMPORT int scanf(char *, ...); /* read & convert stdin */ X! IMPORT void setbuf(FILE *, char *); /* select stream buffer */ X! IMPORT void setbuffer(FILE *, char *, int); /* set buffer for stream */ X! IMPORT void setlinebuf(FILE *); X! IMPORT int ungetc(int, FILE *); /* pushd character back on stream */ X! IMPORT int stdioFillBuf(FILE *); X! IMPORT int stdioFlushBuf(unsigned char *, FILE *); X X #endif INCstdioLibh SHAR_EOF if test 2775 -ne "`wc -c stdioLib.h.patch`" then echo shar: error transmitting stdioLib.h.patch '(should have been 2775 characters)' fi echo shar: extracting strLib.h.patch '(956 characters)' sed 's/^X//' << \SHAR_EOF > strLib.h.patch X*** ../old/strLib.h Tue Apr 3 14:13:35 1990 X--- strLib.h Tue Apr 3 14:09:04 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01b,14jan87,gae added IMPORTs of the rest of the functions. X 01a,12jan87,llk written X */ X*************** X*** 12,22 **** X X /* function declarations */ X X! IMPORT char *strcpy (); X! IMPORT char *strncpy (); X! IMPORT char *strcat (); X! IMPORT char *strncat (); X! IMPORT char *index (); X! IMPORT char *rindex (); X X #endif X--- 13,26 ---- X X /* function declarations */ X X! IMPORT char *strcpy (char *, char *); X! IMPORT char *strncpy (char *, char *, int); X! IMPORT char *strcat (char *, char *); X! IMPORT char *strncat (char *, char *, int); X! IMPORT int strlen(char *); X! IMPORT int strcmp(char *, char *); X! IMPORT int strncmp(char *, char *, int); X! IMPORT char *index (char *, char); X! IMPORT char *rindex (char *, char); X X #endif SHAR_EOF if test 956 -ne "`wc -c strLib.h.patch`" then echo shar: error transmitting strLib.h.patch '(should have been 956 characters)' fi echo shar: extracting symLib.h.patch '(1162 characters)' sed 's/^X//' << \SHAR_EOF > symLib.h.patch X*** ../old/symLib.h Tue Apr 3 14:13:35 1990 X--- symLib.h Tue Apr 3 14:09:04 1990 X*************** X*** 2,8 **** X X /* X modification history X! -------------------- X 02d,30may88,dnw changed to v4 names. X 02c,24dec86,gae changed stsLib.h to vwModNum.h. X 02b,05jun86,dnw changed SYMTAB structure to have ptr to symbol array X--- 2,9 ---- X X /* X modification history X! --------------------' X! 03a,22jan90,rekn ansi-fied. X 02d,30may88,dnw changed to v4 names. X 02c,24dec86,gae changed stsLib.h to vwModNum.h. X 02b,05jun86,dnw changed SYMTAB structure to have ptr to symbol array X*************** X*** 54,59 **** X X typedef SYMTAB *SYMTAB_ID; X X! SYMTAB_ID symTblCreate (); X X #endif X--- 55,67 ---- X X typedef SYMTAB *SYMTAB_ID; X X! /* functions */ X! IMPORT STATUS symAdd(SYMTAB *, char *, char *, UTINY); X! IMPORT void symEach(SYMTAB *, FUNCPTR, int); X! IMPORT STATUS symFindByName(SYMTAB *, char *, char **, UTINY *); X! IMPORT STATUS symFindByNameAnd Type(SYMTAB *, char *, char **, UTINY *, X! UTINY, UTINY); X! IMPORT STATUS symFindByValue(SYMTAB *, int, char *, int *, UTINY *); X! IMPORT SYMTAB_ID symTblCreate (int, int); X X #endif SHAR_EOF if test 1162 -ne "`wc -c symLib.h.patch`" then echo shar: error transmitting symLib.h.patch '(should have been 1162 characters)' fi echo shar: extracting sysLib.h.patch '(1668 characters)' sed 's/^X//' << \SHAR_EOF > sysLib.h.patch X*** ../old/sysLib.h Tue Apr 3 14:13:36 1990 X--- sysLib.h Tue Apr 3 14:09:05 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,22jan90,rekn ansi-fied. X 01k,23may89,dnw added SYSFLG_NO_STARTUP_SCRIPT. X 01j,02may89,dnw added SYSFLG_VENDOR_{0,1,2,3}. X 01i,15oct88,dnw added SYSFLG_NO_AUTOBOOT, SYSFLG_QUICK_AUTOBOOT, X*************** X*** 74,80 **** X X /* function declarations */ X X! IMPORT char *sysMemTop (); X X #endif ASMLANGUAGE X X--- 75,108 ---- X X /* function declarations */ X X! IMPORT char *sysModel(void); X! IMPORT void sysHwInit(void); X! IMPORT char *sysMemTop (void); X! IMPORT STATUS sysToMonitor(int); X! IMPORT STATUS sysClkConnect(FUNCPTR, int); X! IMPORT void sysClkDisable(void); X! IMPORT void sysClkEnable(void); X! IMPORT int sysClkRateGet(void); X! IMPORT void sysClkRateSet(int); X! IMPORT STATUS sysAuxClkConnect(FUNCPTR, int); X! IMPORT void sysAuxClkDisConnect(void); X! IMPORT void sysAuxClkDisable(void); X! IMPORT void sysAuxClkEnable(void); X! IMPORT int sysAuxClkRateGet(void); X! IMPORT void sysAuxClkRateSet(int); X! IMPORT STATUS sysLocalToBusAdrs(int, char *, char **); X! IMPORT STATUS sysBusTo Localadrs(int, cha *, char **); X! IMPORT STATUS sysIntDisable(int); X! IMPORT STATUS sysIntEnable(int); X! IMPORT int sysBusIntack(int); X! IMPORT STATUS sysBusIntGen(int, int); X! IMPORT STATUS sysMailboxConnect(FUNCPTR, int); X! IMPORT STATUS sysMailboxEnable(char *); X! IMPORT int sysProcNumGet(void); X! IMPORT void sysProcNumSet(int); X! IMPORT BOOL sysBusTas(char *); X! IMPORT STATUS sysNvRamGet(char *, int, int); X! IMPORT void sysNvRamSet(char *, int ,int); X X #endif ASMLANGUAGE X SHAR_EOF if test 1668 -ne "`wc -c sysLib.h.patch`" then echo shar: error transmitting sysLib.h.patch '(should have been 1668 characters)' fi echo shar: extracting taskLib.h.patch '(3411 characters)' sed 's/^X//' << \SHAR_EOF > taskLib.h.patch X*** ../old/taskLib.h Tue Apr 3 14:13:37 1990 X--- taskLib.h Tue Apr 3 14:09:06 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,17jan90,rekn modified to use ansi prototypes X 01k,25may89,gae added VX_FORTRAN option. X 01j,21apr89,jcf added KERNEL_{UNINIT,VRTX,PSOS,WIND}. X 01i,07nov88,rdc added VX_ADA_DEBUG to task options. X*************** X*** 113,123 **** X int options; /* task option bits (see below) */ X } TASK_DESC; X X X /* function declarations */ X X! IMPORT TCBX *taskTcbX (); /* get task control block extension */ X! IMPORT VOID idle (); /* idle task */ X! IMPORT char *taskName (); /* get name associated with a task id */ X X #endif INCtaskLibh X--- 114,164 ---- X int options; /* task option bits (see below) */ X } TASK_DESC; X X+ /* include goes here since it depends on above */ X+ #include "wind.h" X X /* function declarations */ X+ IMPORT STATUS taskActivate(int); /* activate existing task */ X+ IMPORT int taskCreate(char *, int, int, char *, int, WIND_TCB *, FUNCPTR, X+ int ...); /* create task */ X+ IMPORT STATUS taskDelay(int); /* sleep # of ticks */ X+ IMPORT STATUS taskDelete(int); /* delete a task */ X+ IMPORT int taskIdDefault(int); /* default task id */ X+ IMPORT int taskFigure(int); /* task name/id to id */ X+ IMPORT int taskIdListGet(int *, int); /* get active task list */ X+ IMPORT int taskIdSelf(void); /* get running task's id */ X+ IMPORT STATUS taskIdVerify(int); /* verify task exists */ X+ IMPORT STATUS taskInfoGet(int, TASK_DESC *); /* get task's task descriptor */ X+ IMPORT BOOL taskIsReadey(int); /* check run status */ X+ IMPORT BOOL taskIsSuspended(int); /* check run state */ X+ IMPORT STATUS taskLock(); /* disable task scheduling */ X+ IMPORT char *taskName (int); /* get name associated with a task id */ X+ IMPORT int taskNameToId(char *); /* task name to task id */ X+ IMPORT STATUS taskOptionsGet(int, int *); /* get task options */ X+ IMPORT STATUS taskOptionsSet(int , int, int); /* change task options */ X+ IMPORT STATUS taskPriorityGet(int , int *); /* get task priority */ X+ IMPORT STATUS taskPrioritySet(int, int); /* set new priority */ X+ IMPORT STATUS taskRegsGet(int, int *, int *, char **, USHORT *, X+ INSTR **); /* get task's registers */ X+ IMPORT STATUS taskRegsSet(int, int *, int *, char *, USHORT, INSTR *); X+ /* set task's registers */ X+ IMPORT void taskRegsShow(int); /* print task's registers */ X+ IMPORT int taskRestart(int); /* restart task */ X+ IMPORT STATUS taskResume(int); /* resume task */ X+ IMPORT STATUS taskSRSet(int, USHORT); /* set task's status register */ X+ IMPORT int taskSpawn(char *, int, int, int, FUNCPTR, ...); X+ /* spawn task */ X+ IMPORT STATUS taskStatusString(int, char *); /* return task's status */ X+ /* as a string */ X+ IMPORT STATUS taskSuspend(int); /* suspend task */ X+ IMPORT WIND_TCB *taskTcb(int); /* get task control block */ X+ IMPORT TCBX *taskTcbX (int); /* get task control block extension */ X+ IMPORT STATUS taskUnlock(); /* enable task scheduling */ X+ IMPORT STATUS taskVarAdd(int, int *); /* add task variable */ X+ IMPORT STATUS taskVarDelete(int, int *); /* delete task variable */ X+ IMPORT int taskVarget(int, int *); /* get specified task variable */ X+ IMPORT STATUS taskVarSet(int, int *, int); /* set task variable */ X X! IMPORT VOID idle (void); /* idle task */ X X #endif INCtaskLibh SHAR_EOF if test 3411 -ne "`wc -c taskLib.h.patch`" then echo shar: error transmitting taskLib.h.patch '(should have been 3411 characters)' fi echo shar: extracting taskVarLib.h.patch '(669 characters)' sed 's/^X//' << \SHAR_EOF > taskVarLib.h.patch X*** ../old/taskVarLib.h Tue Apr 3 14:13:37 1990 X--- taskVarLib.h Tue Apr 3 14:09:06 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,29jan90,rekn Ansi-fied. X 01a,25jan88,jcf written by extracting from vxLib.h v02l. X */ X X*************** X*** 18,22 **** X--- 19,30 ---- X int value; /* when task is not running: save of task's val; X * when task is running: save of orig. val */ X } TASK_VAR; X+ X+ /*functions */ X+ X+ IMPORT STATUS taskVarAdd(int, int *); X+ IMPORT STATUS taskVarDelete(int, int *); X+ IMPORT int taskVarGet(int, int *); X+ IMPORT STATUS taskVarSet(int, int *, int); X X #endif SHAR_EOF if test 669 -ne "`wc -c taskVarLib.h.patch`" then echo shar: error transmitting taskVarLib.h.patch '(should have been 669 characters)' fi echo shar: extracting telnetLib.h.patch '(475 characters)' sed 's/^X//' << \SHAR_EOF > telnetLib.h.patch X*** ../old/telnetLib.h Tue Apr 3 14:13:38 1990 X--- telnetLib.h Tue Apr 3 14:09:06 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,03apr90,rekn ANSI-fied. X 01a,10oct86,dnw written X */ X X*************** X*** 66,70 **** X--- 67,75 ---- X X #define TELQUAL_IS 0 /* option is... */ X #define TELQUAL_SEND 1 /* send option */ X+ X+ /* Functions */ X+ IMPORT void telnetInit(void); X+ IMPORT void telnetd(void); X X #endif SHAR_EOF if test 475 -ne "`wc -c telnetLib.h.patch`" then echo shar: error transmitting telnetLib.h.patch '(should have been 475 characters)' fi echo shar: extracting tyLib.h.patch '(987 characters)' sed 's/^X//' << \SHAR_EOF > tyLib.h.patch X*** ../old/tyLib.h Tue Apr 3 14:13:39 1990 X--- tyLib.h Tue Apr 3 14:09:07 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 03a,29jan90,rekn ANSI-fied. X 02k,18nov88,dnw removed NOT_GENERIC stuff X 02j,04may88,jcf changed SEMAPHORE to SEM_ID. X 02i,15jun87,ecs added canceled to rdState & wrtState of TY_DEV. X*************** X*** 78,82 **** X--- 79,99 ---- X /* END_HIDDEN */ X X typedef TY_DEV *TY_DEV_ID; X+ X+ X+ /* functions */ X+ X+ IMPORT void tyAbortFuncSet(FUNCPTR); X+ IMPORT void tyAbortSet(char); X+ IMPORT void tyBackspaceSet(char); X+ IMPORT void tyDeleteLineSet(char); X+ IMPORT STATUS tyDevInit(TY_DEV_ID, int, int, FUNCPTR); X+ IMPORT void tyEOFSet(char); X+ IMPORT STATUS tyIRd(TY_DEV_ID, char); X+ IMPORT STATUS tyITx(TY_DEV_ID,char *); X+ IMPORT STATUS tyIoctl(TY_DEV_ID, int, int); X+ IMPORT void tyMonitorTrapSet(char); X+ IMPORT int tyRead(TY_DEV_ID, char *, int); X+ IMPORT int tyWrite(TY_DEV_ID, char *, int); X X #endif SHAR_EOF if test 987 -ne "`wc -c tyLib.h.patch`" then echo shar: error transmitting tyLib.h.patch '(should have been 987 characters)' fi echo shar: extracting vxWorks.h.patch '(672 characters)' sed 's/^X//' << \SHAR_EOF > vxWorks.h.patch X*** ../old/vxWorks.h Tue Apr 3 14:13:40 1990 X--- vxWorks.h Tue Apr 3 14:09:09 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,10jan90,rekn modified to use ansi declarion of printf X 01t,08apr89,dnw added ifdef to prevent inclusion of vxWorks.h more than once. X 01s,22jun88,dnw moved READ, WRITE, and UPDATE back here from ioLib.h. X 01r,22apr88,gae oops! forgot some #endif's in 01q. X*************** X*** 138,142 **** X--- 139,146 ---- X typedef unsigned short INSTR; /* word-alligned instructions */ X X #endif ASMLANGUAGE X+ X+ IMPORT VOID printf(char*, ...); X+ IMPORT void exit(int); X X #endif INCvxWorksh SHAR_EOF if test 672 -ne "`wc -c vxWorks.h.patch`" then echo shar: error transmitting vxWorks.h.patch '(should have been 672 characters)' fi echo shar: extracting wdLib.h.patch '(579 characters)' sed 's/^X//' << \SHAR_EOF > wdLib.h.patch X*** ../old/wdLib.h Tue Apr 3 14:13:41 1990 X--- wdLib.h Tue Apr 3 14:09:09 1990 X*************** X*** 3,8 **** X--- 3,9 ---- X /* X modification history X -------------------- X+ 02a,29jan90,rekn ANSI-fied X 01a,21may84,dnw written X */ X X*************** X*** 28,33 **** X X /* function declarations */ X X! WDOG_ID wdCreate (); X X #endif X--- 29,38 ---- X X /* function declarations */ X X! IMPORT void wdCancel(WDOG_ID); X! IMPORT WDOG_ID wdCreate(void); X! IMPORT void wdLibInit(void); X! IMPORT void wdStart(WDOG_ID, int, FUNCPTR, int); X! IMPORT void wdTick(void); X X #endif SHAR_EOF if test 579 -ne "`wc -c wdLib.h.patch`" then echo shar: error transmitting wdLib.h.patch '(should have been 579 characters)' fi # End of shell archive exit 0