实例介绍
vxworks5.5内核源码,很全,包括各种内核驱动等,结合tornado下的代码,基本可以深度剖析vxworks了,很难找到
【实例截图】
【核心代码】
vxworks5-master
└── vxworks5-master
└── target
├── Makefile
├── config
│ ├── Makefile
│ └── comps
│ ├── src
│ │ ├── dosfs2
│ │ │ ├── usrAta.c
│ │ │ └── usrFd.c
│ │ ├── usrSmObj.c
│ │ └── usrVxFusion.c
│ └── vxWorks
│ ├── 01vxmp.cdf
│ ├── 02vxfusion.cdf
│ ├── 10bsp.cdf
│ └── 10dosfs2.cdf
├── h
│ ├── arch
│ │ ├── ppc
│ │ │ └── ppc403.h
│ │ └── sparc
│ │ └── mb86940.h
│ ├── cbioLib.h
│ ├── dcacheCbio.h
│ ├── dosFsLib.h
│ ├── dpartCbio.h
│ ├── drv
│ │ ├── usb
│ │ │ ├── usbAcmLib.h
│ │ │ ├── usbBulkDevLib.h
│ │ │ ├── usbCbiUfiDevLib.h
│ │ │ ├── usbHcd.h
│ │ │ ├── usbHcdOhciLib.h
│ │ │ ├── usbHcdUhciLib.h
│ │ │ ├── usbKeyboardLib.h
│ │ │ ├── usbKlsiEnd.h
│ │ │ ├── usbMouseLib.h
│ │ │ ├── usbNC1080End.h
│ │ │ ├── usbOhci.h
│ │ │ ├── usbPegasusEnd.h
│ │ │ ├── usbPrinterLib.h
│ │ │ ├── usbSpeakerLib.h
│ │ │ └── usbUhci.h
│ │ └── vxfusion
│ │ └── distIfUdp.h
│ ├── msgQSmLib.h
│ ├── private
│ │ ├── assertAltern.h
│ │ ├── cbioLibP.h
│ │ ├── dosDirLibP.h
│ │ ├── dosFsFatP.h
│ │ ├── dosFsLibP.h
│ │ ├── dosFsVerP.h
│ │ ├── msgQSmLibP.h
│ │ ├── print64Lib.h
│ │ ├── semSmLibP.h
│ │ ├── smFixBlkLibP.h
│ │ ├── smMemLibP.h
│ │ ├── smNameLibP.h
│ │ └── smObjLibP.h
│ ├── qFifoGLib.h
│ ├── ramDiskCbio.h
│ ├── rawFsLib.h
│ ├── semSmLib.h
│ ├── smDllLib.h
│ ├── smMemLib.h
│ ├── smNameLib.h
│ ├── smObjLib.h
│ ├── tarLib.h
│ ├── usb
│ │ ├── ossLib.h
│ │ ├── pciConstants.h
│ │ ├── tools
│ │ │ ├── cmdParser.h
│ │ │ └── wavFormat.h
│ │ ├── usb.h
│ │ ├── usbAudio.h
│ │ ├── usbCommdevices.h
│ │ ├── usbDescrCopyLib.h
│ │ ├── usbEnet.h
│ │ ├── usbHandleLib.h
│ │ ├── usbHcdLib.h
│ │ ├── usbHid.h
│ │ ├── usbLib.h
│ │ ├── usbListLib.h
│ │ ├── usbMassStorage.h
│ │ ├── usbPciLib.h
│ │ ├── usbPlatform.h
│ │ ├── usbPrinter.h
│ │ ├── usbQueueLib.h
│ │ ├── usbdCoreLib.h
│ │ ├── usbdLib.h
│ │ └── usbdStructures.h
│ ├── usrFdiskPartLib.h
│ └── vxfusion
│ ├── distIfLib.h
│ ├── distLib.h
│ ├── distNameLib.h
│ ├── distNetLib.h
│ ├── distNodeLib.h
│ ├── distStatLib.h
│ ├── distTBufLib.h
│ ├── msgQDistGrpLib.h
│ ├── msgQDistGrpShow.h
│ ├── msgQDistLib.h
│ ├── msgQDistShow.h
│ └── private
│ ├── distIncoLibP.h
│ ├── distLibP.h
│ ├── distNameLibP.h
│ ├── distNetLibP.h
│ ├── distNodeLibP.h
│ ├── distObjLibP.h
│ ├── distPktLibP.h
│ ├── distStatLibP.h
│ ├── distTBufLibP.h
│ ├── msgQDistGrpLibP.h
│ └── msgQDistLibP.h
└── src
├── Makefile
├── arch
│ ├── Makefile
│ ├── Makefile.in
│ ├── arm
│ │ ├── Makefile
│ │ └── unixALib.s
│ ├── doc
│ │ ├── Makefile
│ │ ├── dbgArchLib.c
│ │ ├── excArchLib.c
│ │ ├── fppArchLib.c
│ │ ├── intArchLib.c
│ │ ├── taskArchLib.c
│ │ └── vxLib.c
│ ├── i86
│ │ ├── Makefile
│ │ ├── bALib.s
│ │ ├── cacheALib.s
│ │ ├── cacheArchLib.c
│ │ ├── dbgArchLib.c
│ │ ├── dllALib.s
│ │ ├── dsmLib.c
│ │ ├── elfI86.c
│ │ ├── excALib.s
│ │ ├── excArchLib.c
│ │ ├── excArchShow.c
│ │ ├── ffsALib.s
│ │ ├── fppALib.s
│ │ ├── fppArchLib.c
│ │ ├── intALib.s
│ │ ├── intArchLib.c
│ │ ├── ipiALib.s
│ │ ├── ipiArchLib.c
│ │ ├── math
│ │ │ ├── Makefile
│ │ │ ├── emuFncALib.s
│ │ │ ├── emuIncALib.s
│ │ │ ├── emuMainALib.s
│ │ │ ├── emuOperALib.s
│ │ │ ├── emuSubALib.s
│ │ │ ├── mathALib.s
│ │ │ ├── mathHardALib.s
│ │ │ ├── mathHardLib.c
│ │ │ └── mathSoftLib.c
│ │ ├── mmuI86ALib.s
│ │ ├── mmuI86Lib.c
│ │ ├── mmuPro32ALib.s
│ │ ├── mmuPro32Lib.c
│ │ ├── mmuPro36ALib.s
│ │ ├── mmuPro36Lib.c
│ │ ├── pentiumALib.s
│ │ ├── pentiumLib.c
│ │ ├── pentiumShow.c
│ │ ├── qPriBMapALib.s
│ │ ├── semALib.s
│ │ ├── semCALib.s
│ │ ├── semMALib.s
│ │ ├── sigCtxALib.s
│ │ ├── sigCtxLib.c
│ │ ├── sllALib.s
│ │ ├── taskArchLib.c
│ │ ├── trcLib.c
│ │ ├── unixALib.s
│ │ ├── vmArch32Lib.c
│ │ ├── vmArch36Lib.c
│ │ ├── vmBaseArch32Lib.c
│ │ ├── vmBaseArch36Lib.c
│ │ ├── vxALib.s
│ │ ├── vxLib.c
│ │ ├── vxShow.c
│ │ ├── vxmIfLib.c
│ │ ├── wdbDbgALib.s
│ │ ├── wdbDbgArchLib.c
│ │ ├── windALib.s
│ │ └── workQALib.s
│ ├── i960
│ │ ├── Makefile
│ │ ├── math
│ │ │ └── Makefile
│ │ └── unixALib.s
│ ├── mc68k
│ │ ├── Makefile
│ │ ├── math
│ │ │ ├── Makefile
│ │ │ ├── bindec.s
│ │ │ ├── binstr.s
│ │ │ ├── bugfix.s
│ │ │ ├── decbin.s
│ │ │ ├── do_func.s
│ │ │ ├── excFppALib.s
│ │ │ ├── fixunssfsi.c
│ │ │ ├── fpsp040E.h
│ │ │ ├── fpsp040L.h
│ │ │ ├── gen_except.s
│ │ │ ├── get_op.s
│ │ │ ├── kernel_ex.s
│ │ │ ├── l_do_func.s
│ │ │ ├── l_entry.s
│ │ │ ├── l_round.s
│ │ │ ├── l_sacos.s
│ │ │ ├── l_sasin.s
│ │ │ ├── l_satan.s
│ │ │ ├── l_satanh.s
│ │ │ ├── l_scale.s
│ │ │ ├── l_scosh.s
│ │ │ ├── l_setox.s
│ │ │ ├── l_sgetem.s
│ │ │ ├── l_sint.s
│ │ │ ├── l_slog2.s
│ │ │ ├── l_slogn.s
│ │ │ ├── l_srem_mod.s
│ │ │ ├── l_ssin.s
│ │ │ ├── l_ssinh.s
│ │ │ ├── l_stan.s
│ │ │ ├── l_stanh.s
│ │ │ ├── l_stwotox.s
│ │ │ ├── l_support.s
│ │ │ ├── res_func.s
│ │ │ ├── round.s
│ │ │ ├── sacos.s
│ │ │ ├── sasin.s
│ │ │ ├── satan.s
│ │ │ ├── satanh.s
│ │ │ ├── scale.s
│ │ │ ├── scosh.s
│ │ │ ├── setox.s
│ │ │ ├── sgetem.s
│ │ │ ├── sint.s
│ │ │ ├── slog2.s
│ │ │ ├── slogn.s
│ │ │ ├── smovecr.s
│ │ │ ├── srem_mod.s
│ │ │ ├── ssin.s
│ │ │ ├── ssinh.s
│ │ │ ├── stan.s
│ │ │ ├── stanh.s
│ │ │ ├── sto_res.s
│ │ │ ├── stwotox.s
│ │ │ ├── tbldo.s
│ │ │ ├── uss_dpfncs.s
│ │ │ ├── uss_dpopns.s
│ │ │ ├── uss_fpfncs.s
│ │ │ ├── uss_fpopns.s
│ │ │ ├── uss_xlfncs.s
│ │ │ ├── util.s
│ │ │ ├── x_bsun.s
│ │ │ ├── x_operr.s
│ │ │ ├── x_ovfl.s
│ │ │ ├── x_snan.s
│ │ │ ├── x_store.s
│ │ │ ├── x_unfl.s
│ │ │ └── x_unsupp.s
│ │ └── unixALib.s
│ ├── mips
│ │ ├── Makefile
│ │ ├── math
│ │ │ └── Makefile
│ │ └── unixALib.s
│ ├── ppc
│ │ ├── Makefile
│ │ └── math
│ │ ├── Makefile
│ │ ├── motorolaLib
│ │ │ └── Makefile
│ │ └── usSoftwareLib
│ │ └── Makefile
│ ├── sh
│ │ ├── Makefile
│ │ └── unixALib.s
│ └── sparc
│ ├── Makefile
│ ├── math
│ │ ├── Makefile
│ │ ├── arc32.s
│ │ ├── ceil32.s
│ │ ├── dp32.s
│ │ ├── exp32.s
│ │ ├── fdmul32.s
│ │ ├── floor32.s
│ │ ├── fp32.s
│ │ ├── fparc32.s
│ │ ├── fpceil32.s
│ │ ├── fpexp32.s
│ │ ├── fpfloo32.s
│ │ ├── fphyp32.s
│ │ ├── fplog32.s
│ │ ├── fpmod32.s
│ │ ├── fppow32.s
│ │ ├── fpsqrt32.s
│ │ ├── fptrig32.s
│ │ ├── func32.s
│ │ ├── hyp32.s
│ │ ├── log32.s
│ │ ├── mod32.s
│ │ ├── pow32.s
│ │ ├── sqrt32.s
│ │ └── trig32.s
│ └── unixALib.s
├── bpf
│ ├── Makefile
│ ├── bpfDrv.c
│ ├── bpfProto.c
│ └── bpf_filter.c
├── config
│ └── usrVxFusion.c
├── cplus
│ ├── Makefile
│ └── rts
│ ├── Makefile
│ ├── cplusCore.cpp
│ ├── cplusInit.cpp
│ ├── cplusLib.c
│ ├── cplusLibDoc.c
│ ├── cplusLoad.c
│ ├── cplusStr.cpp
│ ├── cplusUsr.c
│ ├── cplusXtors.c
│ └── demangler
│ ├── Makefile
│ ├── ansidecl.h
│ ├── cp-demangle.c
│ ├── cplus-dem.c
│ ├── cplusDem.c
│ ├── cplusDemStub.c
│ ├── demangle.h
│ ├── edg-decode.c
│ ├── libiberty.h
│ ├── safe-ctype.c
│ └── safe-ctype.h
├── dhcp
│ ├── Makefile
│ ├── common_subr.c
│ ├── database.c
│ ├── delarp.c
│ ├── dhcpRelay.c
│ ├── dhcpc.c
│ ├── dhcpcBoot.c
│ ├── dhcpcState1.c
│ ├── dhcpcState2.c
│ ├── dhcpc_subr.c
│ ├── dhcpr.c
│ ├── dhcps.c
│ ├── flushroute.c
│ ├── hash.c
│ └── interface.c
├── drv
│ ├── Makefile
│ ├── pcmcia
│ │ ├── Makefile
│ │ ├── cisLib.c
│ │ ├── cisShow.c
│ │ ├── pccardLib.c
│ │ ├── pccardShow.c
│ │ ├── pcic.c
│ │ ├── pcicShow.c
│ │ ├── pcmciaLib.c
│ │ ├── pcmciaShow.c
│ │ ├── sramDrv.c
│ │ ├── tcic.c
│ │ └── tcicShow.c
│ ├── vxfusion
│ │ ├── Makefile
│ │ └── distIfUdp.c
│ └── wdb
│ ├── Makefile
│ ├── amc500
│ │ ├── dpconfig.h
│ │ ├── dptarget.c
│ │ ├── dptarget.h
│ │ ├── dualport.h
│ │ └── wdbNetromPktDrv.c
│ ├── dpconfig.h
│ ├── dptarget.c
│ ├── dptarget.h
│ ├── dualport.h
│ ├── wdbBdmPktDrv.c
│ ├── wdbEndPktDrv.c
│ ├── wdbNetromPktDrv.c
│ ├── wdbPipePktDrv.c
│ ├── wdbSlipPktDrv.c
│ ├── wdbTemplatePktDrv.c
│ ├── wdbTsfsDrv.c
│ ├── wdbUlipPktDrv.c
│ └── wdbVioDrv.c
├── event
│ ├── Makefile
│ ├── connLib.c
│ ├── evtLogLib.c
│ ├── seqDrv.c
│ ├── trgLib.c
│ ├── trgShow.c
│ ├── wvFileUploadPathLib.c
│ ├── wvHostLib.c
│ ├── wvLib.c
│ ├── wvRpcSvc.c
│ ├── wvRpc_xdr.c
│ ├── wvServer.c
│ ├── wvSockUploadPathLib.c
│ ├── wvTmrLib.c
│ └── wvTsfsUploadPathLib.c
├── fs
│ ├── Makefile
│ ├── cbioLib.c
│ ├── dcacheCbio.c
│ ├── dosChkLib.c
│ ├── dosDirOldLib.c
│ ├── dosFsFat.c
│ ├── dosFsFmtLib.c
│ ├── dosFsLib.c
│ ├── dosVDirLib.c
│ ├── dpartCbio.c
│ ├── print64Lib.c
│ └── rawFsLib.c
├── libc
│ ├── Makefile
│ ├── assert
│ │ ├── Makefile
│ │ ├── ansiAssert.c
│ │ └── assert.c
│ ├── ctype
│ │ ├── Makefile
│ │ ├── __ctype_tab.c
│ │ ├── ansiCtype.c
│ │ ├── isalnum.c
│ │ ├── isalpha.c
│ │ ├── iscntrl.c
│ │ ├── isdigit.c
│ │ ├── isgraph.c
│ │ ├── islower.c
│ │ ├── isprint.c
│ │ ├── ispunct.c
│ │ ├── isspace.c
│ │ ├── isupper.c
│ │ ├── isxdigit.c
│ │ ├── tolower.c
│ │ └── toupper.c
│ ├── locale
│ │ ├── Makefile
│ │ ├── ansiLocale.c
│ │ ├── localeconv.c
│ │ └── setlocale.c
│ ├── math
│ │ ├── Makefile
│ │ ├── acosh.c
│ │ ├── ansiMath.c
│ │ ├── asincos.c
│ │ ├── asinh.c
│ │ ├── atan.c
│ │ ├── atan2.c
│ │ ├── atanh.c
│ │ ├── ceil.c
│ │ ├── cosh.c
│ │ ├── exp.c
│ │ ├── exp__E.c
│ │ ├── expm1.c
│ │ ├── fabs.c
│ │ ├── floor.c
│ │ ├── fmod.c
│ │ ├── frexp.c
│ │ ├── ldexp.c
│ │ ├── log.c
│ │ ├── log10.c
│ │ ├── log1p.c
│ │ ├── log__L.c
│ │ ├── modf.c
│ │ ├── pow.c
│ │ ├── sincos.c
│ │ ├── sinh.c
│ │ ├── sqrt.c
│ │ ├── support.c
│ │ ├── tan.c
│ │ └── tanh.c
│ ├── setjmp
│ │ ├── Makefile
│ │ ├── ansiSetjmp.c
│ │ └── longjmp.c
│ ├── stdarg
│ │ ├── Makefile
│ │ └── ansiStdarg.c
│ ├── stdio
│ │ ├── Makefile
│ │ ├── ansiStdio.c
│ │ ├── clearerr.c
│ │ ├── fclose.c
│ │ ├── fdopen.c
│ │ ├── feof.c
│ │ ├── ferror.c
│ │ ├── fflush.c
│ │ ├── fgetc.c
│ │ ├── fgetpos.c
│ │ ├── fgets.c
│ │ ├── fileno.c
│ │ ├── flags.c
│ │ ├── fopen.c
│ │ ├── fprintf.c
│ │ ├── fputc.c
│ │ ├── fputs.c
│ │ ├── fread.c
│ │ ├── freopen.c
│ │ ├── fscanf.c
│ │ ├── fseek.c
│ │ ├── fsetpos.c
│ │ ├── ftell.c
│ │ ├── fvwrite.c
│ │ ├── fwrite.c
│ │ ├── getc.c
│ │ ├── getchar.c
│ │ ├── gets.c
│ │ ├── getw.c
│ │ ├── makebuf.c
│ │ ├── perror.c
│ │ ├── putc.c
│ │ ├── putchar.c
│ │ ├── puts.c
│ │ ├── putw.c
│ │ ├── refill.c
│ │ ├── rewind.c
│ │ ├── rget.c
│ │ ├── scanf.c
│ │ ├── setbuf.c
│ │ ├── setbuffer.c
│ │ ├── setvbuf.c
│ │ ├── stdio.c
│ │ ├── stdioLib.c
│ │ ├── stdioShow.c
│ │ ├── tmpfile.c
│ │ ├── tmpnam.c
│ │ ├── ungetc.c
│ │ ├── vfprintf.c
│ │ ├── wbuf.c
│ │ └── wsetup.c
│ ├── stdlib
│ │ ├── Makefile
│ │ ├── abort.c
│ │ ├── abs.c
│ │ ├── ansiStdlib.c
│ │ ├── atexit.c
│ │ ├── atof.c
│ │ ├── atoi.c
│ │ ├── atol.c
│ │ ├── bsearch.c
│ │ ├── div.c
│ │ ├── labs.c
│ │ ├── ldiv.c
│ │ ├── multibyte.c
│ │ ├── qsort.c
│ │ ├── rand.c
│ │ ├── strtod.c
│ │ ├── strtol.c
│ │ ├── strtoul.c
│ │ └── system.c
│ ├── string
│ │ ├── Makefile
│ │ ├── ansiString.c
│ │ ├── memchr.c
│ │ ├── memcmp.c
│ │ ├── memcpy.c
│ │ ├── memmove.c
│ │ ├── memset.c
│ │ ├── strcat.c
│ │ ├── strchr.c
│ │ ├── strcmp.c
│ │ ├── strcoll.c
│ │ ├── strcpy.c
│ │ ├── strcspn.c
│ │ ├── strerror.c
│ │ ├── string.c
│ │ ├── strlen.c
│ │ ├── strncat.c
│ │ ├── strncmp.c
│ │ ├── strncpy.c
│ │ ├── strpbrk.c
│ │ ├── strrchr.c
│ │ ├── strspn.c
│ │ ├── strstr.c
│ │ ├── strtok.c
│ │ ├── strtok_r.c
│ │ ├── strxfrm.c
│ │ └── xstate.c
│ └── time
│ ├── Makefile
│ ├── ansiTime.c
│ ├── asctime.c
│ ├── clock.c
│ ├── ctime.c
│ ├── difftime.c
│ ├── gmtime.c
│ ├── locTime.c
│ ├── localtime.c
│ ├── mktime.c
│ ├── strftime.c
│ └── time.c
├── math
│ ├── Makefile
│ ├── cabs.c
│ ├── cbrt.c
│ ├── e_fmod.c
│ ├── e_pow.c
│ ├── e_remainder.c
│ ├── e_sqrt.c
│ ├── fdlibm.h
│ ├── fpType.c
│ ├── ieeefp.h
│ ├── rint.c
│ ├── s_rint.c
│ └── s_scalbn.c
├── netinet
│ ├── Makefile
│ ├── if.c
│ ├── if_ether.c
│ ├── if_subr.c
│ ├── igmp.c
│ ├── in.c
│ ├── in_cksum.c
│ ├── in_pcb.c
│ ├── in_proto.c
│ ├── ip_icmp.c
│ ├── ip_input.c
│ ├── ip_mroute.c
│ ├── ip_output.c
│ ├── ppp
│ │ ├── Makefile
│ │ ├── auth.c
│ │ ├── chap.c
│ │ ├── crypt.c
│ │ ├── fsm.c
│ │ ├── if_ppp.c
│ │ ├── ipcp.c
│ │ ├── lcp.c
│ │ ├── magic.c
│ │ ├── options.c
│ │ ├── pppHookLib.c
│ │ ├── pppLib.c
│ │ ├── pppSecretLib.c
│ │ ├── pppShow.c
│ │ ├── ppp_md5.c
│ │ ├── ppp_vxworks.c
│ │ ├── random.c
│ │ └── upap.c
│ ├── radix.c
│ ├── raw_cb.c
│ ├── raw_ip.c
│ ├── raw_usrreq.c
│ ├── route.c
│ ├── rtsock.c
│ ├── sl_compress.c
│ ├── sys_socket.c
│ ├── tcp_debug.c
│ ├── tcp_input.c
│ ├── tcp_output.c
│ ├── tcp_subr.c
│ ├── tcp_timer.c
│ ├── tcp_usrreq.c
│ ├── udp_usrreq.c
│ ├── uipc_dom.c
│ ├── uipc_mbuf.c
│ ├── uipc_sock.c
│ ├── uipc_sock2.c
│ ├── unixLib.c
│ └── vsLib.c
├── netwrs
│ ├── Makefile
│ ├── arpLib.c
│ ├── bootpLib.c
│ ├── bsdSockLib.c
│ ├── dhcpcBootLib.c
│ ├── dhcpcCommonLib.c
│ ├── dhcpcLib.c
│ ├── dhcpcShow.c
│ ├── dhcprLib.c
│ ├── dhcpsLib.c
│ ├── etherLib.c
│ ├── etherMultiLib.c
│ ├── ftpLib.c
│ ├── ftpdLib.c
│ ├── hostLib.c
│ ├── icmpLib.c
│ ├── icmpShow.c
│ ├── ifIndexLib.c
│ ├── ifLib.c
│ ├── igmpLib.c
│ ├── igmpShow.c
│ ├── inetLib.c
│ ├── ipFilterLib.c
│ ├── ipLib.c
│ ├── ipProto.c
│ ├── m2IcmpLib.c
│ ├── m2IfLib.c
│ ├── m2IpLib.c
│ ├── m2Lib.c
│ ├── m2SysLib.c
│ ├── m2TcpLib.c
│ ├── m2UdpLib.c
│ ├── mCastRouteLib.c
│ ├── mbufLib.c
│ ├── mbufSockLib.c
│ ├── mountLib.c
│ ├── muxLib.c
│ ├── muxTkLib.c
│ ├── netBufLib.c
│ ├── netDrv.c
│ ├── netLib.c
│ ├── netShow.c
│ ├── nfsDrv.c
│ ├── nfsHash.c
│ ├── nfsLib.c
│ ├── nfsdLib.c
│ ├── pingLib.c
│ ├── proxyArpLib.c
│ ├── proxyLib.c
│ ├── rarpLib.c
│ ├── rdiscLib.c
│ ├── remLib.c
│ ├── resolv
│ │ ├── Makefile
│ │ ├── gethostnamadr.c
│ │ ├── res_comp.c
│ │ ├── res_debug.c
│ │ ├── res_mkquery.c
│ │ ├── res_query.c
│ │ ├── res_send.c
│ │ ├── resolvLib.c
│ │ └── resolvLibDoc.c
│ ├── rlogLib.c
│ ├── routeCommonLib.c
│ ├── routeLib.c
│ ├── routeSockLib.c
│ ├── routeUtilLib.c
│ ├── rpcLib.c
│ ├── sntpcLib.c
│ ├── sntpsLib.c
│ ├── sockLib.c
│ ├── tcpLib.c
│ ├── tcpShow.c
│ ├── telnetdLib.c
│ ├── tftpLib.c
│ ├── tftpdLib.c
│ ├── udpLib.c
│ ├── udpShow.c
│ ├── wvNetLib.c
│ ├── xdr_bool_t.c
│ ├── xdr_nfs.c
│ ├── xdr_nfsserv.c
│ ├── zbufLib.c
│ └── zbufSockLib.c
├── os
│ ├── Makefile
│ ├── cacheLib.c
│ ├── cdromFsLib.c
│ ├── classLib.c
│ ├── classShow.c
│ ├── clockLib.c
│ ├── copyright.c
│ ├── dirLib.c
│ ├── dspLib.c
│ ├── dspShow.c
│ ├── envLib.c
│ ├── errnoLib.c
│ ├── excLib.c
│ ├── ffsLib.c
│ ├── fioLib.c
│ ├── floatLib.c
│ ├── fppLib.c
│ ├── fppShow.c
│ ├── funcBind.c
│ ├── hashLib.c
│ ├── intLib.c
│ ├── ioLib.c
│ ├── iosLib.c
│ ├── iosShow.c
│ ├── logLib.c
│ ├── memLib.c
│ ├── memPartLib.c
│ ├── memShow.c
│ ├── ntPassFsLib.c
│ ├── objLib.c
│ ├── passFsLib.c
│ ├── pathLib.c
│ ├── pipeDrv.c
│ ├── ptyDrv.c
│ ├── rebootLib.c
│ ├── rt11FsLib.c
│ ├── scsi1Lib.c
│ ├── scsi2Lib.c
│ ├── scsiCommonLib.c
│ ├── scsiCtrlLib.c
│ ├── scsiDirectLib.c
│ ├── scsiLib.c
│ ├── scsiMgrLib.c
│ ├── scsiSeqLib.c
│ ├── selectLib.c
│ ├── sigLib.c
│ ├── smLib.c
│ ├── smPktLib.c
│ ├── symLib.c
│ ├── symShow.c
│ ├── tapeFsLib.c
│ ├── taskHookLib.c
│ ├── taskHookShow.c
│ ├── taskVarLib.c
│ ├── timerLib.c
│ ├── ttyDrv.c
│ ├── tyLib.c
│ ├── unixDrv.c
│ ├── vmBaseLib.c
│ ├── vmData.c
│ └── vmMpuLib.c
├── ostool
│ ├── Makefile
│ ├── bootAoutLib.c
│ ├── bootEcoffLib.c
│ ├── bootElfLib.c
│ ├── bootLoadLib.c
│ ├── bootSomCoffLib.c
│ ├── dbgLib.c
│ ├── dbgTaskLib.c
│ ├── ledLib.c
│ ├── loadAoutLib.c
│ ├── loadCoffLib.c
│ ├── loadEcoffComm.c
│ ├── loadEcoffLib.c
│ ├── loadElfLib.c
│ ├── loadLib.c
│ ├── loadPecoffLib.c
│ ├── loadSomCoffLib.c
│ ├── loginLib.c
│ ├── moduleLib.c
│ ├── periodHost.c
│ ├── remShellLib.c
│ ├── repeatHost.c
│ ├── shell.c
│ ├── shell.slex
│ ├── shell.yacc
│ ├── shellLib.c
│ ├── shell_slex_c
│ ├── slex
│ ├── spyLib.c
│ ├── timexLib.c
│ ├── ttHostLib.c
│ └── unldLib.c
├── posix
│ ├── Makefile
│ ├── _pthreadLib.c
│ ├── _schedPxLib.c
│ ├── aioPxLib.c
│ ├── aioPxShow.c
│ ├── aioSysDrv.c
│ ├── ftruncate.c
│ ├── ioQLib.c
│ ├── mmanPxLib.c
│ ├── mqPxLib.c
│ ├── mqPxShow.c
│ ├── mutexPxLib.c
│ ├── posixNameLib.c
│ ├── pthreadLib.c
│ ├── schedPxLib.c
│ ├── semPxLib.c
│ ├── semPxShow.c
│ └── symTblLockLib.c
├── rip
│ ├── Makefile
│ ├── af.c
│ ├── inet.c
│ ├── input.c
│ ├── m2RipLib.c
│ ├── md5.c
│ ├── output.c
│ ├── ripLib.c
│ ├── ripTimer.c
│ ├── routed_if.c
│ ├── startup.c
│ └── tables.c
├── rpc
│ ├── Makefile
│ ├── auth_none.c
│ ├── auth_unix.c
│ ├── authunix_pro.c
│ ├── clnt_generic.c
│ ├── clnt_perror.c
│ ├── clnt_raw.c
│ ├── clnt_simple.c
│ ├── clnt_tcp.c
│ ├── clnt_udp.c
│ ├── get_myaddr.c
│ ├── pmap_clnt.c
│ ├── pmap_getmaps.c
│ ├── pmap_getport.c
│ ├── pmap_prot.c
│ ├── pmap_prot2.c
│ ├── pmap_rmt.c
│ ├── portmap.c
│ ├── rpc_callmsg.c
│ ├── rpc_common.c
│ ├── rpc_prot.c
│ ├── svc.c
│ ├── svc_auth.c
│ ├── svc_auth_uni.c
│ ├── svc_raw.c
│ ├── svc_simple.c
│ ├── svc_tcp.c
│ ├── svc_udp.c
│ ├── xdr.c
│ ├── xdr_array.c
│ ├── xdr_float.c
│ ├── xdr_mem.c
│ ├── xdr_rec.c
│ └── xdr_ref.c
├── tffs
│ ├── Makefile
│ ├── backgrnd.c
│ ├── dosformt.c
│ ├── fatlite.c
│ ├── flbase.c
│ ├── flflash.c
│ ├── flparse.c
│ ├── flsocket.c
│ ├── fltl.c
│ ├── ftllite.c
│ ├── reedsol.c
│ ├── ssfdc.c
│ ├── tffsDrv.c
│ └── tffsLib.c
├── tool
│ ├── Makefile
│ ├── common
│ │ ├── Makefile
│ │ ├── arm_call_via.s
│ │ └── saverest.s
│ ├── diab
│ │ ├── Makefile
│ │ ├── defs.exclude
│ │ ├── diabLibFind.tcl
│ │ ├── libd
│ │ │ └── Makefile
│ │ ├── libimpfp
│ │ │ └── Makefile
│ │ ├── libimpfp-c++
│ │ │ └── Makefile
│ │ ├── libimpl
│ │ │ └── Makefile
│ │ ├── libstl
│ │ │ └── Makefile
│ │ ├── libtorn
│ │ │ └── Makefile
│ │ └── rules.diab
│ ├── genConfig.tcl
│ ├── gnu
│ │ ├── Makefile
│ │ ├── defs.exclude
│ │ ├── libg++
│ │ │ ├── Makefile
│ │ │ └── defs.g++
│ │ ├── libgcc
│ │ │ └── Makefile
│ │ ├── libstdc++
│ │ │ └── Makefile
│ │ └── rules.gnu
│ ├── objsExclude.tcl
│ └── rules.tool
├── usb
│ ├── Makefile
│ ├── ossLib.c
│ ├── tools
│ │ ├── Makefile
│ │ └── cmdParser.c
│ ├── usbDescrCopyLib.c
│ ├── usbHandleLib.c
│ ├── usbHcdLib.c
│ ├── usbLib.c
│ ├── usbListLib.c
│ ├── usbQueueLib.c
│ ├── usbdCoreLib.c
│ └── usbdLib.c
├── usr
│ ├── Makefile
│ ├── devSplit.c
│ ├── ramDiskCbio.c
│ ├── tarLib.c
│ ├── usrDosFsOld.c
│ ├── usrFdiskPartLib.c
│ └── usrFsLib.c
├── util
│ ├── Makefile
│ ├── bLib.c
│ ├── bootLib.c
│ ├── bufLib.c
│ ├── cksumLib.c
│ ├── dllLib.c
│ ├── inflateLib.c
│ ├── lstLib.c
│ ├── qFifoLib.c
│ ├── qJobLib.c
│ ├── qLib.c
│ ├── qPriBMapLib.c
│ ├── qPriDeltaLib.c
│ ├── qPriHeapLib.c
│ ├── qPriListLib.c
│ ├── rBuffLib.c
│ ├── rBuffShow.c
│ ├── rngLib.c
│ ├── sllLib.c
│ ├── smUtilLib.c
│ └── uncompress.c
├── vxcom
│ ├── Makefile
│ ├── com
│ │ ├── FileRegistry.cpp
│ │ ├── Makefile
│ │ ├── MemoryStream.cpp
│ │ ├── MemoryStream.h
│ │ ├── TaskAllocator.cpp
│ │ ├── TaskAllocator.h
│ │ ├── comLib.cpp
│ │ ├── comMisc.cpp
│ │ └── comShow.cpp
│ ├── comcore
│ │ ├── Makefile
│ │ ├── comCoreLib.c
│ │ └── comRegistry.c
│ ├── h
│ │ ├── comBase.h
│ │ ├── comCoreLib.h
│ │ ├── comErr.h
│ │ ├── comLib.h
│ │ ├── comObjLib.h
│ │ ├── comObjLibExt.h
│ │ ├── comShow.h
│ │ ├── make
│ │ │ ├── rules.library.common
│ │ │ ├── rules.library.t2
│ │ │ ├── rules.library.unix
│ │ │ ├── rules.library.vxWorks
│ │ │ └── unix-defs.vxcom
│ │ └── private
│ │ ├── DebugHooks.h
│ │ ├── comMisc.h
│ │ ├── comRegistry.h
│ │ ├── comStl.h
│ │ └── comSysLib.h
│ ├── idl
│ │ ├── ConnectionPoint.idl
│ │ ├── Makefile
│ │ ├── comAutomation.idl
│ │ ├── comCoreTypes.idl
│ │ ├── vxStream.idl
│ │ └── vxidl.idl
│ ├── os
│ │ ├── Makefile
│ │ ├── VxWorks
│ │ │ └── comVxWorksSupport.c
│ │ ├── comSysLib.c
│ │ ├── comSysNtp.c
│ │ └── generic
│ │ ├── comGuidLib.c
│ │ └── comTrackLib.c
│ └── veloce-hack
│ ├── ConnectionPoint.h
│ ├── ConnectionPoint_i.c
│ ├── ConnectionPoint_ps.cpp
│ ├── Makefile
│ ├── OxidResolver.h
│ ├── OxidResolver_i.c
│ ├── OxidResolver_ps.cpp
│ ├── RemUnknown.h
│ ├── RemUnknown_i.c
│ ├── RemUnknown_ps.cpp
│ ├── RemoteActivation.h
│ ├── RemoteActivation_i.c
│ ├── RemoteActivation_ps.cpp
│ ├── comAutomation.h
│ ├── comAutomation_i.c
│ ├── comAutomation_ps.cpp
│ ├── comCoreTypes.h
│ ├── comCoreTypes_i.c
│ ├── comCoreTypes_ps.cpp
│ ├── opc_ae.h
│ ├── opc_ae_i.c
│ ├── opc_ae_ps.cpp
│ ├── opccomn.h
│ ├── opccomn_i.c
│ ├── opccomn_ps.cpp
│ ├── opcda.h
│ ├── opcda_i.c
│ ├── opcda_ps.cpp
│ ├── orpc.h
│ ├── orpc_i.c
│ ├── orpc_ps.cpp
│ ├── rpcDceProto.h
│ ├── rpcDceProto_i.c
│ ├── vxStream.h
│ ├── vxStream_i.c
│ ├── vxStream_ps.cpp
│ ├── vxidl.h
│ ├── vxidl_i.c
│ └── vxidl_ps.cpp
├── vxdcom
│ ├── Makefile
│ ├── dcom
│ │ ├── ClassFactory_ps.cpp
│ │ ├── DceDispatchTable.cpp
│ │ ├── DceDispatchTable.h
│ │ ├── InterfaceProxy.cpp
│ │ ├── InterfaceProxy.h
│ │ ├── Makefile
│ │ ├── NdrStreams.cpp
│ │ ├── NdrStreams.h
│ │ ├── NdrTypes.cpp
│ │ ├── NdrTypes.h
│ │ ├── ObjectExporter.cpp
│ │ ├── ObjectExporter.h
│ │ ├── ObjectTable.cpp
│ │ ├── ObjectTable.h
│ │ ├── PSFactory.cpp
│ │ ├── PSFactory.h
│ │ ├── RemoteOxid.cpp
│ │ ├── RemoteOxid.h
│ │ ├── RemoteRegistry.cpp
│ │ ├── RemoteRegistry.h
│ │ ├── RemoteSCM.cpp
│ │ ├── RemoteSCM.h
│ │ ├── SCM.cpp
│ │ ├── SCM.h
│ │ ├── StdMarshaler.cpp
│ │ ├── StdMarshaler.h
│ │ ├── StdProxy.cpp
│ │ ├── StdProxy.h
│ │ ├── StdStub.cpp
│ │ ├── StdStub.h
│ │ ├── Stublet.cpp
│ │ ├── Stublet.h
│ │ ├── dcomLib.cpp
│ │ ├── dcomShow.cpp
│ │ ├── ntlmssp.cpp
│ │ ├── ntlmssp.h
│ │ ├── orpcLib.cpp
│ │ ├── orpcLib.h
│ │ ├── vxdcomExtent.cpp
│ │ ├── vxdcomExtent.h
│ │ └── vxdcomGlobals.cpp
│ ├── h
│ │ ├── comInit.h
│ │ ├── dcomExtent.h
│ │ ├── dcomLib.h
│ │ ├── dcomProxy.h
│ │ ├── make
│ │ │ ├── rules.library.t2
│ │ │ └── rules.library.unix
│ │ └── private
│ │ └── vxdcomGlobals.h
│ ├── idl
│ │ ├── Makefile
│ │ ├── OxidResolver.idl
│ │ ├── RemUnknown.idl
│ │ ├── RemoteActivation.idl
│ │ ├── opc_ae.idl
│ │ ├── opccomn.idl
│ │ ├── opcda.idl
│ │ ├── orpc.idl
│ │ └── rpcDceProto.idl
│ ├── reactor
│ │ ├── Acceptor.h
│ │ ├── Acceptor.tcc
│ │ ├── Connector.h
│ │ ├── Connector.tcc
│ │ ├── EventHandler.cpp
│ │ ├── EventHandler.h
│ │ ├── HandleSet.cpp
│ │ ├── HandleSet.h
│ │ ├── INETSockAddr.cpp
│ │ ├── INETSockAddr.h
│ │ ├── Makefile
│ │ ├── Reactor.cpp
│ │ ├── Reactor.h
│ │ ├── ReactorHandle.cpp
│ │ ├── ReactorHandle.h
│ │ ├── ReactorTypes.h
│ │ ├── SockAcceptor.cpp
│ │ ├── SockAcceptor.h
│ │ ├── SockAddr.cpp
│ │ ├── SockAddr.h
│ │ ├── SockConnector.cpp
│ │ ├── SockConnector.h
│ │ ├── SockEP.cpp
│ │ ├── SockEP.h
│ │ ├── SockIO.cpp
│ │ ├── SockIO.h
│ │ ├── SockStream.cpp
│ │ ├── SockStream.h
│ │ ├── SvcHandler.h
│ │ ├── SvcHandler.tcc
│ │ ├── TaskQueue.h
│ │ ├── TaskQueue.tcc
│ │ ├── ThreadPool.cpp
│ │ ├── ThreadPool.h
│ │ ├── TimeValue.cpp
│ │ └── TimeValue.h
│ └── rpc
│ ├── Makefile
│ ├── RpcDispatchTable.h
│ ├── RpcDispatcher.cpp
│ ├── RpcDispatcher.h
│ ├── RpcEventHandler.cpp
│ ├── RpcEventHandler.h
│ ├── RpcIfClient.cpp
│ ├── RpcIfClient.h
│ ├── RpcIfServer.cpp
│ ├── RpcIfServer.h
│ ├── RpcPdu.cpp
│ ├── RpcPdu.h
│ ├── RpcPduFactory.cpp
│ ├── RpcPduFactory.h
│ ├── RpcProxyMsg.cpp
│ ├── RpcProxyMsg.h
│ ├── RpcStringBinding.cpp
│ └── RpcStringBinding.h
├── vxfusion
│ ├── Makefile
│ ├── drv
│ │ ├── Makefile
│ │ ├── distIfLib.c
│ │ └── distIfShow.c
│ ├── os
│ │ ├── Makefile
│ │ ├── distNameLib.c
│ │ ├── distNameShow.c
│ │ ├── distObjLib.c
│ │ └── distStatLib.c
│ └── wind
│ ├── Makefile
│ ├── distGapLib.c
│ ├── distIncoLib.c
│ ├── distLib.c
│ ├── distNetLib.c
│ ├── distNodeLib.c
│ ├── distTBufLib.c
│ ├── msgQDistGrpLib.c
│ ├── msgQDistGrpShow.c
│ ├── msgQDistLib.c
│ └── msgQDistShow.c
├── vxmp
│ ├── Makefile
│ ├── os
│ │ ├── Makefile
│ │ ├── smFixBlkLib.c
│ │ ├── smFixBlkShow.c
│ │ ├── smMemLib.c
│ │ ├── smMemShow.c
│ │ ├── smNameLib.c
│ │ ├── smNameShow.c
│ │ ├── smObjLib.c
│ │ └── smObjShow.c
│ ├── util
│ │ ├── Makefile
│ │ ├── qFifoGLib.c
│ │ └── smDllLib.c
│ └── wind
│ ├── Makefile
│ ├── msgQSmLib.c
│ ├── msgQSmShow.c
│ ├── semSmLib.c
│ └── semSmShow.c
├── vxvmi
│ ├── Makefile
│ ├── vmLib.c
│ └── vmShow.c
├── wdb
│ ├── Makefile
│ ├── wdbAltivecLib.c
│ ├── wdbBpLib.c
│ ├── wdbCallLib.c
│ ├── wdbCnctLib.c
│ ├── wdbCtxExitLib.c
│ ├── wdbCtxLib.c
│ ├── wdbCtxStartLib.c
│ ├── wdbDbgLib.c
│ ├── wdbDirectCallLib.c
│ ├── wdbDspLib.c
│ ├── wdbEvtLib.c
│ ├── wdbEvtptLib.c
│ ├── wdbExcLib.c
│ ├── wdbFpLib.c
│ ├── wdbFuncBind.c
│ ├── wdbGopherLib.c
│ ├── wdbLib.c
│ ├── wdbMemCoreLib.c
│ ├── wdbMemLib.c
│ ├── wdbRegLib.c
│ ├── wdbRpcLib.c
│ ├── wdbSioTestLib.c
│ ├── wdbSvcLib.c
│ ├── wdbTaskBpLib.c
│ ├── wdbTyCoDrv.c
│ ├── wdbUdpLib.c
│ ├── wdbUdpSockLib.c
│ ├── wdbUserEvtLib.c
│ ├── wdbVioLib.c
│ └── xdr
│ ├── Makefile
│ ├── ctx.c
│ ├── ctxcreat.c
│ ├── ctxstep.c
│ ├── evtdata.c
│ ├── evtpoint.c
│ ├── memory.c
│ ├── regs.c
│ ├── rpccksum.c
│ ├── tgtinfo.c
│ ├── wrapper.c
│ └── xdrcore.c
├── wind
│ ├── Makefile
│ ├── eventLib.c
│ ├── eventShow.c
│ ├── kernelLib.c
│ ├── msgQEvLib.c
│ ├── msgQLib.c
│ ├── msgQShow.c
│ ├── schedLib.c
│ ├── semBLib.c
│ ├── semCLib.c
│ ├── semEvLib.c
│ ├── semLib.c
│ ├── semMLib.c
│ ├── semOLib.c
│ ├── semShow.c
│ ├── taskInfo.c
│ ├── taskLib.c
│ ├── taskShow.c
│ ├── tickLib.c
│ ├── wdLib.c
│ ├── wdShow.c
│ ├── windLib.c
│ └── workQLib.c
├── wrn
│ ├── Makefile
│ └── util
│ ├── Makefile
│ └── avlLib.c
├── wtx
│ ├── Makefile
│ ├── regcomp.c
│ ├── regcore.c
│ ├── regerror.c
│ ├── regexec.c
│ ├── regfree.c
│ ├── symSyncLib.c
│ ├── wtx.c
│ ├── wtxexch.c
│ ├── wtxrpc.c
│ └── xdrwtx.c
└── wv
├── Makefile
├── classLib.c
├── memLib.c
├── memPartLib.c
├── msgQLib.c
├── msgQShow.c
├── objLib.c
├── qJobLib.c
├── schedLib.c
├── semBLib.c
├── semCLib.c
├── semLib.c
├── semMLib.c
├── semShow.c
├── sigLib.c
├── taskLib.c
├── taskShow.c
├── tickLib.c
├── wdLib.c
├── wdShow.c
├── windLib.c
└── workQLib.c
125 directories, 1269 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论