这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » MCU » [讨论] 关于bsp开发阶段数据段没有对齐的探讨!

共12条 1/2 1 2 跳转至

[讨论] 关于bsp开发阶段数据段没有对齐的探讨!

菜鸟
2005-08-12 18:44:46     打赏

下面是在 bootconfig.c 里面定义的函数,其中在usrInit()函数外面定义了两个

变量:

#define TRAP_VALUE_1 0x12348765
#define TRAP_VALUE_2 0x5a5ac3c3
LOCAL volatile UINT32 trapValue1 = TRAP_VALUE_1;
LOCAL volatile UINT32 trapValue2 = TRAP_VALUE_2;


然后在 usrInit() 函数里面写这样一个死循环:
while (trapValue1 != TRAP_VALUE_1 || trapValue2 != TRAP_VALUE_2)
{}

然后我在 sdt 里面跟踪的时候发现:

100490 stmdb r13!{r4,r5,r14}
100494 ldr r1,100524; #159538
100498 ldr r2,100528; #12348765
10049c ldr r14,0x0010052c; #15953
1004a0 ldr r12,100530 ;#5a5ac3c3
1004a4 sub r13,r13,#8
1004a8 mov r5.r0
1004ac ldr r3,[r1,#0] ; r3=0xffffffff
1004b0 cmp r3,r2
1004b4 bne 1004ac
1004ac ldr r3,[r14,#0]
1004b0 cmp r3,r12
1004b4 bne 1004ac

就是说,在执行的时候,很明显进入这个死循环了!
我看 while 循环的注释,这么写:

/*
* This trap will catch improper loading of the data section.
* We check the magic cookie values to make sure the data section is
* in the expected memory location. We do not want
* to proceed further if the data segment is not correct.
*
* It should be easy to detect entry into the trap using an ICE, JTAG,
* or logic analyzer. Without the trap, the processor is likely to run
* away out of control.
*
* Data section misalignment can occur when there is a change in tool
* chain, build rules, compiler, host utilites, etc.
*/



大家来看看怎么回事?为什么数据段没有对齐?怎么解决这个问题呢?恳请高

手指点一下!

[align=right][color=#000066][此贴子已经被作者于2005-8-16 9:01:13编辑过][/color][/align]



关键词: 讨论     关于     开发     阶段     数据     段没有     没有     对齐         

菜鸟
2005-08-16 17:02:00     打赏
2楼

up 这个问题还是没有解决! 不知道怎么回事!


菜鸟
2005-08-17 00:52:00     打赏
3楼

bootInit.c程序

#include "copyright_wrs.h"

#include "vxWorks.h"
#include "sysLib.h"
#include "config.h"
#include "errno.h"
#include "sioLib.h"


#define UNCMP_RTN inflate

#ifndef USER_RESERVED_MEM
# define USER_RESERVED_MEM 0
#endif

/*
* If memory is to be cleared, it will be cleared from SYS_MEM_BOTTOM
* up to (but not including) SYS_MEM_TOP, except for text and data segments.
* The user reserved area is not cleared.
*/

#define SYS_MEM_TOP \
(LOCAL_MEM_LOCAL_ADRS + LOCAL_MEM_SIZE - USER_RESERVED_MEM)

#define SYS_MEM_BOTTOM \
(LOCAL_MEM_LOCAL_ADRS + RESERVED)

#define BINARRAYEND_ROUNDOFF (ROUND_DOWN(binArrayEnd, sizeof(long)))

IMPORT void romInit ();
IMPORT STATUS UNCMP_RTN ();
IMPORT void usrInit ();
IMPORT void sysInitAlt ();
IMPORT void start ();

IMPORT UCHAR binArrayStart []; /* compressed binary image */
IMPORT UCHAR binArrayEnd []; /* end of compressed binary image */
IMPORT char etext []; /* defined by the loader */
IMPORT char end []; /* defined by the loader */
IMPORT UCHAR wrs_kernel_data_start []; /* defined by the loader */
IMPORT UCHAR wrs_kernel_data_end []; /* defined by the loader */

#if ((CPU_FAMILY == MIPS) || (CPU_FAMILY==PPC) || \
(CPU_FAMILY==COLDFIRE))
#define RESIDENT_DATA RAM_DST_ADRS
#else
#define RESIDENT_DATA wrs_kernel_data_start
#endif

#ifndef RAM_DST_ADRS /* default uncompress dest. */
#define RAM_DST_ADRS RAM_HIGH_ADRS
#endif

/* If the boot code is in RAM and the RAM is already initialized,
* clearing the RAM is not necessary. Macro BOOTCODE_IN_RAM is
* used not to clear the RAM.
*/
#ifdef BOOTCODE_IN_RAM /* not to clear RAM */
#undef ROM_TEXT_ADRS
#undef ROM_BASE_ADRS
#define ROM_TEXT_ADRS ((UINT)romInit)
#define ROM_BASE_ADRS ((UINT)romInit)
#endif /* BOOTCODE_IN_RAM */

/* #if defined (UNCOMPRESS) || defined (ROM_RESIDENT) */
#ifndef ROM_COPY_SIZE
#define ROM_COPY_SIZE (ROM_SIZE - (ROM_TEXT_ADRS - ROM_BASE_ADRS))
#endif
/* #endif*/ /* UNCOMPRESS */

#define ROM_OFFSET(adr) (((UINT)adr - (UINT)romInit) + ROM_TEXT_ADRS)

/* forward declarations */

LOCAL void copyLongs (FAST UINT *source, FAST UINT *destination, UINT nlongs);
#ifndef BOOTCODE_IN_RAM
LOCAL void fillLongs (FAST UINT *buf, UINT nlongs, FAST UINT val);
#endif /* BOOTCODE_IN_RAM */
#if (CPU==XSCALE)
int checkLongs (FAST UINT *source, FAST UINT *destination, UINT nlongs);
#endif

/*******************************************************************************
*
* romStart - generic ROM initialization
*
* This is the first C code executed after reset.
*
* This routine is called by the assembly start-up code in romInit().
* It clears memory, copies ROM to RAM, and possibly invokes the uncompressor.
* It then jumps to the entry point of the uncompressed object code.
*
* RETURNS: N/A
*/

void romStart
(
FAST int startType /* start type */
)

{
#if ((CPU_FAMILY==SPARC) || (CPU_FAMILY==MIPS) || (CPU_FAMILY==I80X86) || \
(CPU_FAMILY==PPC) || (CPU_FAMILY==ARM))
volatile /* to force absolute adressing */
#endif /* (CPU_FAMILY==SPARC) */
FUNCPTR absEntry; /* to avoid PC Relative Jump Subroutine */
#if (CPU_FAMILY==ARM) && (!defined(ROM_RESIDENT)) && !defined(BOOTCODE_IN_RAM)
VOIDFUNCPTR ramfillLongs = fillLongs; /* force call to RAM */
#define fillLongs(a,b,c) ramfillLongs(a,b,c)
#endif /* (CPU_FAMILY==ARM) */
#if (CPU_FAMILY==MC680X0) && !defined(ROM_RESIDENT) && !defined(BOOTCODE_IN_RAM)
volatile VOIDFUNCPTR romcopyLongs = &copyLongs; /* force call to ROM */
#define copyLongs romcopyLongs
#endif /* (CPU_FAMILY==MC680X0) */
/*
* Copy from ROM to RAM, minus the compressed image
* if compressed boot ROM which relies on binArray
* appearing last in DATA segment.
*/

#ifdef ROM_RESIDENT
/* If ROM resident code, then copy only data segment
* from ROM to RAM, initialize memory and jump
* to usrInit.
*/


#if (CPU_FAMILY == SPARC)
copyLongs ((UINT *)(etext + 8), (UINT *) RESIDENT_DATA,
#else
copyLongs ((UINT *)(etext + 4), (UINT *) RESIDENT_DATA,
#endif
((UINT) wrs_kernel_data_end - (UINT) RESIDENT_DATA) / sizeof (long));

#else /* ROM_RESIDENT */

#ifdef UNCOMPRESS

#if (CPU_FAMILY == MIPS)
/*
* copy text to uncached locations to avoid problems with
* copy back caches
*/
((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)K0_TO_K1(romInit),
ROM_COPY_SIZE / sizeof (long));
#else /* CPU_FAMILY == MIPS */
((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)romInit,
ROM_COPY_SIZE / sizeof (long));
#endif /* CPU_FAMILY == MIPS */

#else /* UNCOMPRESS */

#if (CPU_FAMILY == MIPS)
/*
* copy text to uncached locations to avoid problems with
* copy back caches
* copy the entire data segment because there is no way to ensure that
* binArray is the last thing in the data segment because of GP relative
* addressing
*/
((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)K0_TO_K1(romInit),
((UINT)wrs_kernel_data_end - (UINT)romInit) / sizeof (long));
#else /* CPU_FAMILY == MIPS */

((FUNCPTR)ROM_OFFSET(copyLongs))
((UINT *)((UINT)ROM_TEXT_ADRS + ((UINT)BINARRAYEND_ROUNDOFF -
(UINT)romInit)), (UINT *)BINARRAYEND_ROUNDOFF,
((UINT)wrs_kernel_data_end - (UINT)binArrayEnd) / sizeof (long));

#if (CPU==XSCALE)
/* validate coherence, can not assume uncached area... */
((FUNCPTR)ROM_OFFSET(checkLongs))
(ROM_TEXT_ADRS, (UINT)romInit,
((UINT)binArrayStart - (UINT)romInit) / sizeof (long));

((FUNCPTR)ROM_OFFSET(checkLongs))
((UINT *)((UINT)ROM_TEXT_ADRS + ((UINT)BINARRAYEND_ROUNDOFF -
(UINT)romInit)), (UINT *)BINARRAYEND_ROUNDOFF,
((UINT)wrs_kernel_data_end - (UINT)binArrayEnd) / sizeof (long));
#endif
#endif /* CPU_FAMILY == MIPS */

#endif /* UNCOMPRESS */
#endif /* ROM_RESIDENT */


#if (CPU_FAMILY != MIPS) && (!defined (BOOTCODE_IN_RAM))

/* clear all memory if cold booting */

if (startType & BOOT_CLEAR)
{
#ifdef ROM_RESIDENT
/* Clear memory not loaded with text & data.
*
* We are careful about initializing all memory (except
* STACK_SAVE bytes) due to parity error generation (on
* some hardware) at a later stage. This is usually
* caused by read accesses without initialization.
*/
fillLongs ((UINT *)SYS_MEM_BOTTOM,
((UINT) RESIDENT_DATA - STACK_SAVE - (UINT)SYS_MEM_BOTTOM)
/ sizeof(long), 0);
fillLongs (((UINT *) wrs_kernel_data_end),
((UINT)SYS_MEM_TOP - ((UINT) wrs_kernel_data_end)) / sizeof(long), 0);

#else /* ROM_RESIDENT */
fillLongs ((UINT *)(SYS_MEM_BOTTOM),
((UINT)romInit - STACK_SAVE - (UINT)SYS_MEM_BOTTOM) /
sizeof(long), 0);

#if defined (UNCOMPRESS)
fillLongs ((UINT *)((UINT)romInit + ROM_COPY_SIZE),
((UINT)SYS_MEM_TOP - ((UINT)romInit + ROM_COPY_SIZE))
/ sizeof(long), 0);
#else
fillLongs ((UINT *)wrs_kernel_data_end,
((UINT)SYS_MEM_TOP - (UINT)wrs_kernel_data_end) / sizeof (long), 0);
#endif /* UNCOMPRESS */
#endif /* ROM_RESIDENT */

/*
* Ensure the boot line is null. This is necessary for those
* targets whose boot line is excluded from cleaning.
*/

*(BOOT_LINE_ADRS) = EOS;
}

#endif /* (CPU_FAMILY != MIPS) && (!defined (BOOTCODE_IN_RAM)) */

/* jump to VxWorks entry point (after uncompressing) */

#if defined (UNCOMPRESS) || defined (ROM_RESIDENT)
#if (CPU_FAMILY == I960)
absEntry = (FUNCPTR)sysInitAlt; /* reinit proc tbl */
#else
absEntry = (FUNCPTR)usrInit; /* on to bootConfig */
#endif /* CPU_FAMILY == I960 */

#else
{
#if (CPU_FAMILY == MIPS)
volatile FUNCPTR absUncompress = (FUNCPTR) UNCMP_RTN;
if ((absUncompress) ((UCHAR *)ROM_OFFSET(binArrayStart),
(UCHAR *)K0_TO_K1(RAM_DST_ADRS),
(int)((UINT)binArrayEnd - (UINT)binArrayStart)) != OK)
#elif (CPU_FAMILY == I80X86) || (CPU_FAMILY == ARM)
volatile FUNCPTR absUncompress = (FUNCPTR) UNCMP_RTN;
if ((absUncompress) ((UCHAR *)ROM_OFFSET(binArrayStart),
(UCHAR *)RAM_DST_ADRS, binArrayEnd - binArrayStart) != OK)
#else
if (UNCMP_RTN ((UCHAR *)ROM_OFFSET(binArrayStart),
(UCHAR *)RAM_DST_ADRS, binArrayEnd - binArrayStart) != OK)
#endif /* (CPU_FAMILY == MIPS) */
return; /* if we return then ROM's will halt */

absEntry = (FUNCPTR)RAM_DST_ADRS; /* compressedEntry () */
}
#endif /* defined UNCOMPRESS || defined ROM_RESIDENT */

#if ((CPU_FAMILY == ARM) && ARM_THUMB)
absEntry = (FUNCPTR)((UINT32)absEntry | 1); /* force Thumb state */
#endif /* CPU_FAMILY == ARM */

(absEntry) (startType);
}

#if (CPU_FAMILY==ARM) && (!defined(ROM_RESIDENT))
#undef fillLongs
#endif /* (CPU_FAMILY==ARM) */


#if (CPU_FAMILY==MC680X0) && !defined(ROM_RESIDENT) && !defined(BOOTCODE_IN_RAM)
#undef copyLongs /* undo effects from above define */
#endif /* CPU_FAMILY==MC680X0 */

/*******************************************************************************
*
* copyLongs - copy one buffer to another a long at a time
*
* This routine copies the first <nlongs> longs from <source> to <destination>.
*/

LOCAL void copyLongs (source, destination, nlongs)
FAST UINT *source; /* pointer to source buffer */
FAST UINT *destination; /* pointer to destination buffer */
UINT nlongs; /* number of longs to copy */

{
FAST UINT *dstend = destination + nlongs;

/* Do the remainder one long at a time. */
while (destination < dstend)
*destination++ = *source++;
}

#ifndef BOOTCODE_IN_RAM
/*******************************************************************************
*
* fillLongs - fill a buffer with a value a long at a time
*
* This routine fills the first <nlongs> longs of the buffer with <val>.
*/

LOCAL void fillLongs (buf, nlongs, val)
FAST UINT *buf; /* pointer to buffer */
UINT nlongs; /* number of longs to fill */
FAST UINT val; /* char with which to fill buffer */

{
FAST UINT *bufend = buf + nlongs;

/* Do the remainder one long at a time. */
while (buf < bufend)
*buf++ = val;
}
#endif /* BOOTCODE_IN_RAM */

#if (CPU==XSCALE)
int checkLongs (source, destination, nlongs)
FAST UINT *source; /* pointer to source buffer */
FAST UINT *destination; /* pointer to destination buffer */
UINT nlongs; /* number of longs to copy */

{
int fine = 1;

FAST UINT *dstend = destination + nlongs;

while (destination < dstend)
{
if (*destination++ != *source++)
{
fine = 0;
break;
}
}
return fine;
}
#endif


[align=right][color=#000066][此贴子已经被作者于2005-8-16 16:54:49编辑过][/color][/align]

菜鸟
2005-08-17 00:56:00     打赏
4楼

config.h原码!

/* config.h - WindRiver SBC ARM7TDMI configuration header */

#ifndef INCconfigh
#define INCconfigh

#ifdef __cplusplus
extern "C" {
#endif

/* BSP version/revision identification, before configAll.h */

#define BSP_VER_1_1 1 /* 1.2 is backward compatible with 1.1 */
#define BSP_VER_1_2 1
#define BSP_VERSION "1.2"
#define BSP_REV "/0" /* BSP revision */

#include "configAll.h"

/*
* STANDALONE_NET must be defined for network debug with
* standalone vxWorks
*/
#undef STANDALONE_NET

/*
* Define SERIAL_DEBUG to enable debugging
* via the serial ports
*/
#undef SERIAL_DEBUG

/*
* If the FORCE_DEFAULT_BOOT_LINE is defined then the DEFAULT_BOOT_LINE
* parameters are always used regardless of NVRAM values specified at
* bootrom time. See target.nr for details. This is usually used to debug
* downloaded images with out a bootrom present.
*/
#define FORCE_DEFAULT_BOOT_LINE

#ifdef INCLUDE_WDB_COMM_VTMD
#define FORCE_DEFAULT_BOOT_LINE /* When using TMD this macro should be undefined */
#endif /* INCLUDE_WDB_COMM_VTMD */

#ifdef FORCE_DEFAULT_BOOT_LINE
#undef INCLUDE_VWARE_LAUNCH
#else
#define INCLUDE_VWARE_LAUNCH
#endif /* FORCE_DEFAULT_BOOT_LINE */

/* Bootline Parameters */
#define DEFAULT_BOOT_LINE "sng(0,0)DreamComeTrue:e:/downfiles/vxWorks " \
"h=12.13.45.12 " \
"e=12.13.45.13 " \
"g=12.13.45.3 " \
"u=Jerry " \
"pw=Jerry " \
"tn=AnywhereII "

#ifdef INCLUDE_VWARE_LAUNCH
#define VWARE_BOOT_LINE "sng(0,0)host:vxWorks " \
"%s " \
"%s " \
"%s " \
"u=target " \
"tn=targetname"
#endif /* INCLUDE_VWARE_LAUNCH */

/* Memory configuration */

#undef LOCAL_MEM_AUTOSIZE /* run-time memory sizing */
#define LOCAL_MEM_SIZE 0x01000000 /* 16M */
#define LOCAL_MEM_LOCAL_ADRS 0x00000000
#define USER_RESERVED_MEM 0x0 /* see sysMemTop() */
#define DRAM_TYPE 1 /* 1 - SDRAM, 0 - EDO DRAM */

/*
* Boot ROM is an image written either to EPROM or to a Flash device.
* If a Flash device is used, part of it can be reserved for boot
* parameters etc. (see the Flash section below).
*
* The following parameters are defined here and in the Makefile.
* They must be kept synchronized; effectively config.h depends on Makefile.
* Any changes made here must be made in the Makefile and vice versa.
*
* ROM_BASE_ADRS is the base of the Flash ROM/EPROM.
* ROM_TEXT_ADRS is the entry point of the VxWorks image
* ROM_SIZE is the size of the part of the Flash ROM/EPROM allocated to
* the VxWorks image (block size - size of headers)
*
* Two other constants are used:
* ROM_COPY_SIZE is the size of the part of the ROM to be copied into RAM
* (uncompressed bootrom)
* ROM_SIZE_TOTAL is the size of the entire Flash ROM (used in sysPhysMemDesc)
*
* The values are given as literals here to make it easier to ensure
* that they are the same as those in the Makefile.
*/

#define ROM_BASE_ADRS 0x01000000 /* base of Flash/EPROM 16 MB */
#define ROM_TEXT_ADRS ROM_BASE_ADRS /* code start addr in ROM */
#undef ROM_SIZE
#define ROM_SIZE 0x00100000 /* size of ROM holding VxWorks 512K */

#define ROM_COPY_SIZE ROM_SIZE
#define ROM_SIZE_TOTAL 0x00200000 /* total size of ROM 2MB */

#define RAM_LOW_ADRS 0x00001000 /* VxWorks image entry point */
#define RAM_HIGH_ADRS 0x00100000 /* RAM address for ROM boot */

/*
* Flash memory configuration
*
* If a Flash memory part is fitted instead of an EPROM, part of it can
* be used as NVRAM storage, if desired. If this is wanted, define
* INCLUDE_FLASH and reduce ROM_SIZE in this file and in Makefile by
* NV_RAM_SIZE. The default is not to provide support for Flash.
*/

#undef INCLUDE_FLASH

#ifdef INCLUDE_FLASH
#define FLASH_WIDTH 4
#define FLASH_CHIP_WIDTH 2
#define SYS_FLASH_TYPE FLASH_29LV800 /* Specify 16 bit 29F part */
#define FLASH_SEGMENT_SIZE 0x2000 /* sector size at 0xFA000-0xFBFFF */
#define FLASH_ADRS ((SBCARM7_FLASH_BASE + 0xFA000) | 0x4000000) /* non cacheable */
#define FLASH_SIZE FLASH_SEGMENT_SIZE
#undef FLASH_NO_OVERLAY

#undef NV_RAM_ADRS
#undef NV_RAM_INTRVL
#undef NV_RAM_SIZE
#undef NV_BOOT_OFFSET
#define NV_RAM_ADRS FLASH_ADRS
#define NV_RAM_INTRVL 1
#define NV_RAM_SIZE FLASH_SEGMENT_SIZE
#define NV_BOOT_OFFSET (FLASH_SEGMENT_SIZE - 0x200)

#else
#define NV_RAM_SIZE NONE
#endif /* INCLUDE_FLASH */

/* LCD support */
#undef INCLUDE_LCD

/* LED support */
#define INCLUDE_LED

#undef BSP_VTS

#ifdef BSP_VTS
#undef INCLUDE_PING
#undef INCLUDE_RLOGIN
#undef INCLUDE_SHOW_ROUTINES
#undef INCLUDE_NET_SYM_TABLE

#define INCLUDE_SHELL
#define INCLUDE_PING
#define INCLUDE_RLOGIN
#define INCLUDE_SHOW_ROUTINES
#define INCLUDE_NET_SYM_TABLE
#endif /*BSP_VTS*/

#undef WDB_COMM_TYPE /* default WDB agent communication path is END */
#define WDB_COMM_TYPE WDB_COMM_END

/* Serial port configuration */

#define INCLUDE_SERIAL
#undef NUM_TTY
#define NUM_TTY 1

#undef CONSOLE_TTY
#define CONSOLE_TTY 0
#undef CONSOLE_BAUD_RATE
#define CONSOLE_BAUD_RATE 19200

/*** WDB ***/
#ifdef SERIAL_DEBUG
#define WDB_NO_BAUD_AUTO_CONFIG

#undef WDB_COMM_TYPE
#undef WDB_TTY_BAUD
#undef WDB_TTY_CHANNEL
#undef WDB_TTY_DEV_NAME

#define WDB_COMM_TYPE WDB_COMM_SERIAL /* WDB in Serial mode */
#define WDB_TTY_BAUD 115200 /* Baud rate for WDB Connection */
#define WDB_TTY_CHANNEL 1 /* COM PORT #2 */
#define WDB_TTY_DEV_NAME "/tyCo/1" /* default TYCODRV_5_2 device name */
#endif /* SERIAL_DEBUG */


/*
* Cache configuration
*
* Note that when MMU is enabled, cache modes are controlled by
* the MMU table entries in sysPhysMemDesc[], not the cache mode
* macros defined here.
*/

/* De-select unused (default) network drivers selected in configAll.h */

#undef INCLUDE_ENP /* include CMC Ethernet interface*/
#undef INCLUDE_EX /* include Excelan Ethernet interface */
#undef INCLUDE_SM_NET /* include backplane net interface */
#undef INCLUDE_SM_SEQ_ADDR /* shared memory network auto address setup */

/* Enhanced Network Driver (END) Support */
#define INCLUDE_NETWORK
#define INCLUDE_END
#undef END_OVERRIDE /* define if you are using old boot ROMs. */

#ifdef INCLUDE_END
#define INCLUDE_SNGKS32C_END /* Include Ethernet driver */
#endif /* INCLUDE_END */

#ifdef INCLUDE_SHELL
#define INCLUDE_SYM_TABLE
#define INCLUDE_STANDALONE_SYM_TABLE
#define INCLUDE_LOADER
#define INCLUDE_UNLOADER
#define INCLUDE_NET_SHOW
#endif /* INCLUDE_SHELL */

/*
* Interrupt mode - interrupts can be in either preemptive or non-preemptive
* mode. For non-preemptive mode, change INT_MODE to INT_NON_PREEMPT_MODEL
*/
#define INT_MODE INT_NON_PREEMPT_MODEL

/*
* miscellaneous definitions
* Note: ISR_STACK_SIZE is defined here rather than in ../all/configAll.h
* (as is more usual) because the stack size depends on the interrupt
* structure of the BSP.
*/

#define ISR_STACK_SIZE 0x800 /* size of ISR stack, in bytes */

/* Optional timestamp support */
#define INCLUDE_TIMESTAMP

#undef INCLUDE_WINDVIEW
#undef INCLUDE_INSTRUMENTATION

#define INCLUDE_DOSFS
#define INCLUDE_RAMDRV

/* Optional TrueFFS support */

#undef INCLUDE_TFFS /* to include TrueFFS driver */

#ifdef INCLUDE_TFFS
#define INCLUDE_SHOW_ROUTINES
#define INCLUDE_DOSFS
#endif /* INCLUDE_TFFS */

/*
* There isn't MMU support in this BSP, this macro is to
* force the MMU to be disable.
*/

#undef INCLUDE_MMU_BASIC

/*
* For cache support define this macro
*/
#undef INCLUDE_CACHE_SUPPORT

#include "wrSbcArm7.h"

#ifdef __cplusplus
}
#endif

#endif /* INCconfigh */
#if defined(PRJ_BUILD)
#include "prjParams.h"
#endif


菜鸟
2005-08-17 04:23:00     打赏
5楼

# Makefile - make rules for target/config/wrSbcArm7



CPU = ARMARCH4
TOOL = gnu
EXTRA_DEFINE = -Wcomment -DCPU_7TDMI -DARMMMU=ARMMMU_NONE -DARMCACHE=ARMCACHE_KS32C

TGT_DIR = $(WIND_BASE)/target

include $(TGT_DIR)/h/make/defs.bsp
#include $(TGT_DIR)/h/make/make.$(CPU)$(TOOL)
#include $(TGT_DIR)/h/make/defs.$(WIND_HOST_TYPE)

DOC_FILES = sysLib sngks32cEnd sngks32cSio

## Only redefine make definitions below this point, or your definitions will
## be overwritten by the makefile stubs above.

TARGET_DIR = Samsung
VENDOR = Samsung
BOARD = Wind River

#
# The constants ROM_TEXT_ADRS, ROM_SIZE, and RAM_HIGH_ADRS are defined
# in config.h and Makefile.
# All definitions for these constants must be identical.
#


ROM_TEXT_ADRS = 01000000 # ROM entry address
ROM_WARM_ADRS = 01000004 # ROM warm entry address
ROM_SIZE = 00100000 # number of bytes of ROM space

RAM_LOW_ADRS = 00001000 # RAM text/data address (bootrom)
RAM_HIGH_ADRS = 00100000 # RAM text/data address (bootrom)

MACH_EXTRA = sngks32cEnd.o

## Only redefine make definitions above this point, or the expansion of
## makefile target dependencies may be incorrect.

include $(TGT_DIR)/h/make/rules.bsp
#include $(TGT_DIR)/h/make/rules.$(WIND_HOST_TYPE)

BOOTINIT = bootInit.c
BOOTCONFIG = bootConfig.c


菜鸟
2005-08-17 04:45:00     打赏
6楼

符号表 (1):

E:\a\bootrom_uncmp: file format elf32-littlearm
E:\a\bootrom_uncmp
architecture: arm, flags 0x00000012:
EXEC_P, HAS_SYMS
start address 0x00100000

Program Header:
LOAD off 0x00000060 vaddr 0x00100000 paddr 0x00100000 align 2**5
filesz 0x0005d900 memsz 0x00060ae0 flags rwx
private flags = 0: [interworking not enabled] [APCS-32] [floats passed in integer registers] [absolute position]

Sections:
Idx Name Size VMA LMA File off Algn
0 .text 000593e0 00100000 00100000 00000060 2**2
CONTENTS, ALLOC, LOAD, CODE
1 .data 00004520 001593e0 001593e0 00059440 2**2
CONTENTS, ALLOC, LOAD, DATA
2 .bss 000031e0 0015d900 0015d900 0005d960 2**5
ALLOC
SYMBOL TABLE:
00100000 l d .text 00000000
001593e0 l d .data 00000000
0015d900 l d .bss 00000000
00000000 l d *ABS* 00000000
00000000 l d *ABS* 00000000
00000000 l d *ABS* 00000000
00100000 l .text 00000000 _romInit
00100000 l .text 00000000 cold
00100004 l .text 00000000 warm
00100034 l .text 00000000 start
00100130 l .text 00000000 L$_SBCARM7Intmsk
00100114 l .text 00000000 HiPosn
00100148 l .text 00000000 L$_SBCARM7Syscfg
00100150 l .text 00000000 L$_SysCfgSdram
001001cc l .text 00000000 L$_SystemInitDataSDRAM
00100144 l .text 00000000 L$_SBCARM7Extdbwth
00100158 l .text 00000000 L$_ClkCon
00100154 l .text 00000000 L$_SBCARM7ClkCon
00100164 l .text 00000000 L$_ExtACon
0010015c l .text 00000000 L$_SBCARM7ExtACon
0010023c l .text 00000000 L$_RomCopySize
001000c8 l .text 00000000 ROM2SDRAM_COPY_LOOP
001001fc l .text 00000000 L$_SystemInitDataSDRAM_S
00100124 l .text 00000000 L$_HiPosn
0010012c l .text 00000000 L$_STACK_ADDR
00100128 l .text 00000000 L$_rStrtInRom
00100134 l .text 00000000 L$_IopModReg
00100138 l .text 00000000 L$_IopConReg
0010013c l .text 00000000 L$_IopDat
00100140 l .text 00000000 L$_SBCARM7Romcon0
0010014c l .text 00000000 L$_SysCfg
0010016c l .text 00000000 L$_SystemInitData
0010019c l .text 00000000 L$_SystemInitData_S
0010022c l .text 00000000 L$_pSystemInitData
00100230 l .text 00000000 L$_pSystemInitData_S
00100234 l .text 00000000 L$_pSystemInitDataSDRAM
00100238 l .text 00000000 L$_pSystemInitDataSDRAM_S
00000000 l df *ABS* 00000000 bootInit_uncmp.c
00100240 l .text 00000000 .gcc2_compiled.
001002e8 l F .text 00000024 copyLongs
0010030c l F .text 0000001c fillLongs
00000000 l df *ABS* 00000000 version.c
00100328 l .text 00000000 .gcc2_compiled.
00000000 l df *ABS* 00000000 bootConfig.c
00100358 l .text 00000000 .gcc2_compiled.
00159438 l O .data 00000050 netIf
00159498 l O .data 00000004 trapValue1
0015949c l O .data 00000004 trapValue2
00102858 l F .text 00000064 bootExcHandler
00100814 l F .text 00000608 bootCmdLoop
00101074 l F .text 0000008c printBootLogo
00102af8 l F .text 00000048 usrBootLineInit
0010290c l F .text 00000098 printExcMsg
00100e78 l F .text 00000154 autoboot
001028bc l F .text 0000004c skipSpace
001029cc l F .text 000000b8 getArg
001025ec l F .text 00000234 d
001024e8 l F .text 000000cc m
00102214 l F .text 00000268 netifAdrsPrint
00101464 l F .text 00000120 bootHelp
00101764 l F .text 0000068c bootLoad
00102494 l F .text 0000003c go
001595a0 l O .data 000000bc helpMsg.0
00102b40 l F .text 00000084 usrBootLineCrack
00103440 l F .text 00000048 usrNetProtoInit
00103168 l F .text 00000018 usrPPPInit
00103134 l F .text 00000018 usrSlipInit
00103100 l F .text 00000018 usrBpInit
00101df0 l F .text 0000005c findCookie
00103228 l F .text 00000218 bootpGet
00102ff8 l F .text 000000d0 usrNetIfConfig
00102dcc l F .text 000001c4 usrNetIfAttach
00101e88 l F .text 000002b4 netLoad
0015d900 l O .bss 00000004 last_adrs.1
0015965c l O .data 00000004 dNbytes.2
00102c24 l F .text 000000a4 checkInetAddrField
00103528 l .text 00000000 L$_SbcArm7Intmsk
00103524 l .text 00000000 L$_STACK_ADDR
0010352c l .text 00000000 L$_IopModReg
00103530 l .text 00000000 L$_IopDat
00103518 l .text 00000000 L$_vxSvcIntStackEnd
00103514 l .text 00000000 L$_vxSvcIntStackBase
00103520 l .text 00000000 L$_vxIrqIntStackEnd
0010351c l .text 00000000 L$_vxIrqIntStackBase
00000000 l df *ABS* 00000000 sysLib.c
00103534 l .text 00000000 .gcc2_compiled.
0015967c l O .data 00000014 sngks32cSioDrvFuncs
00103930 l F .text 00000224 sngks32cIoctl
001036bc l F .text 00000034 sngks32cTxStartup
001036f0 l F .text 0000003c sngks32cCallbackInstall
00103750 l F .text 00000024 sngks32cPollInput
0010372c l F .text 00000024 sngks32cPollOutput
00159690 l O .data 00000004 sngks32cIntrMode
00103b54 l F .text 00000008 dummyCallback
00103774 l F .text 00000094 sngks32cModeSet
00103808 l F .text 00000014 sngks32cHup
0010381c l F .text 00000014 sngks32cOpen
00103830 l F .text 00000100 sngks32cOptSet
00159694 l O .data 00000030 devParas
0015d908 l O .bss 0000002c sngks32cChan
001596cc l O .data 00000004 sysClkRoutine
001596d0 l O .data 00000004 sysClkArg
001596d4 l O .data 00000004 sysClkRunning
001596d8 l O .data 00000004 sysClkConnected
001596dc l O .data 00000004 sysClkTicksPerSecond
001596e0 l O .data 00000004 sysAuxClkRoutine
001596e4 l O .data 00000004 sysAuxClkArg
001596e8 l O .data 00000004 sysAuxClkRunning
001596ec l O .data 00000004 sysAuxClkTicksPerSecond
001596f0 l O .data 00000004 sysTimestampRunning
001596f4 l O .data 00000004 sysTimestampRoutine
001596f8 l O .data 00000004 sysTimestampArg
001596fc l O .data 00000004 connected.0
0015d934 l O .bss 00000004 sysAuxClkTicks
0015d938 l O .bss 00000004 sngks32cIntLvlEnabled
0015d93c l O .bss 00000001 sysLed
00104614 l F .text 00000090 sysLedNumToMask
00159700 l O .data 00000004 physTop.1
00159704 l O .data 00000004 memTop.2
00000000 l df *ABS* 00000000 sngks32cEnd.c
001048c8 l .text 00000000 .gcc2_compiled.
00159730 l O .data 00000038 endFuncTable
00104e3c l F .text 0000013c sngks32cEndStart
00105ee0 l F .text 000000b4 sngks32cEndStop
00104bac l F .text 000000a8 sngks32cEndUnload
00105744 l F .text 0000018c sngks32cEndIoctl
001055d0 l F .text 00000174 sngks32cEndSend
00105e80 l F .text 00000028 sngks32cEndMCastAdd
00105ea8 l F .text 00000028 sngks32cEndMCastDel
00105ed0 l F .text 00000010 sngks32cEndMCastGet
00105c08 l F .text 00000150 sngks32cEndPollSend
00105ad0 l F .text 00000138 sngks32cEndPollRcv
001048c8 l F .text 000000a4 phyPoll
001060b4 l F .text 00000078 sngks32cEndPhyRead
00104c58 l F .text 000000f0 sngks32cEndParse
00104d48 l F .text 000000f4 sngks32cEndMemInit
001058d0 l F .text 00000080 sngks32cEndConfig
00105f94 l F .text 00000120 sngks32cEndReset
00106878 l F .text 000002a0 sngks32cEndFdFree
00104f78 l F .text 00000004 sngks32cEndBdmaTxInt
00104f7c l F .text 00000078 sngks32cEndBdmaRxInt
00104ff4 l F .text 00000174 sngks32cEndMacTxInt
00105168 l F .text 00000004 sngks32cEndMacRxInt
0010516c l F .text 00000234 sngks32cEndHandleRcvInt
001053a0 l F .text 00000230 sngks32cEndRecv
0010643c l F .text 0000043c sngks32cEndFdInitialize
001061b8 l F .text 00000284 sngks32cEndMacInitialize
00105950 l F .text 000000c0 sngks32cEndPollStart
00105a10 l F .text 000000c0 sngks32cEndPollStop
00105d58 l F .text 00000128 sngks32cEndAddrFilterSet
0010612c l F .text 0000008c sngks32cEndPhyWrite
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21635
00106b18 l F .text 00000000 $a
00106d64 l F .text 00000000 CopyDown
00106bb4 l F .text 00000000 Up_TrailingBytes
00106bdc l F .text 00000000 Up_AlignDst
00106c0c l F .text 00000000 Up_SrcUnaligned
00106b40 l F .text 00000000 Up_SrcDstAligned
00106b94 l F .text 00000000 Up_TrailingWords
00106b80 l F .text 00000000 Up_16
00106b54 l F .text 00000000 Up_Loop4
00106b84 l F .text 00000000 Up_12
00106cf8 l F .text 00000000 Up_OneByte
00106c8c l F .text 00000000 Up_TwoBytes
00106c20 l F .text 00000000 Up_ThreeBytes
00106c6c l F .text 00000000 Up_LT16a
00106c30 l F .text 00000000 Up_GE16
00106c84 l F .text 00000000 Up_LT4a
00106cd8 l F .text 00000000 Up_LT16b
00106c9c l F .text 00000000 Up_32b
00106cf0 l F .text 00000000 Up_LT4b
00106d44 l F .text 00000000 Up_LT16c
00106d08 l F .text 00000000 Up_32c
00106d5c l F .text 00000000 Up_LT4c
00106df4 l F .text 00000000 Down_TrailingBytes
00106e1c l F .text 00000000 Down_AlignDst
00106e48 l F .text 00000000 Down_SrcUnaligned
00106d84 l F .text 00000000 Down_SrcDstAligned
00106dd4 l F .text 00000000 Down_TrailingWords
00106db0 l F .text 00000000 Down_16a
00106d98 l F .text 00000000 Down_32a
00106f34 l F .text 00000000 Down_OneByte
00106ec8 l F .text 00000000 Down_TwoBytes
00106e5c l F .text 00000000 Down_ThreeBytes
00106ea8 l F .text 00000000 Down_LT16b
00106e6c l F .text 00000000 Down_32b
00106ec0 l F .text 00000000 Down_LT4b
00106f14 l F .text 00000000 Down_LT16c
00106ed8 l F .text 00000000 Down_32c
00106f2c l F .text 00000000 Down_LT4c
00106f80 l F .text 00000000 Down_4d
00106f44 l F .text 00000000 Down_32d
00106f98 l F .text 00000000 Down_LT4d
00107060 l F .text 00000000 copyBytes_Forward
00106fd4 l F .text 00000000 BacwB_Loop
00107070 l F .text 00000000 ForwB_Loop
001071c0 l F .text 00000000 copyWords_Forward
00107134 l F .text 00000000 BacwW_Loop
001071d0 l F .text 00000000 ForwW_Loop
00107310 l F .text 00000000 copyLongs_Forward
001072b8 l F .text 00000000 CLB_LT16
00107290 l F .text 00000000 CLB_16
001072f0 l F .text 00000000 CLB_LT4
00107340 l F .text 00000000 CLF_LT16
00107318 l F .text 00000000 CLF_16
00107378 l F .text 00000000 CLF_LT4
00107418 l F .text 00000000 TrailingBytes
00107434 l F .text 00000000 AlignDst
001073ac l F .text 00000000 DstAligned
00107400 l F .text 00000000 TrailingWords
0010746c l F .text 00000000 Fill_Loop
00000000 l df *ABS* 00000000 excArchLib.c
001074b8 l F .text 00000000 $a
00159770 l O .data 00000028 excEnterTbl
00107614 l F .text 0000003c excGetInfoFromESF
00159798 l O .data 00000028 excHandlerTbl
001079a0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 excArchShow.c
001079fc l F .text 00000000 $a
00107a28 l F .text 0000010c excInfoShow
00107b34 l F .text 00000074 excIntInfoShow
00107ba8 l F .text 0000005c excPanicShow
001597c0 l O .data 00000040 excMsgTbl
00107c04 l O .text 00000000 $d
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21579
00159978 l O .data 00000000 intNestingLevel
00107c50 l F .text 00000000 $a
00107c50 l F .text 00000000 L$__fpStatus
00107c54 l F .text 00000000 L$_vxSvcIntStackBase
00107c58 l F .text 00000000 L$_errno
00107c5c l F .text 00000000 L$_intCnt
00107c60 l F .text 00000000 L$intNestingLevel
00107c64 l F .text 00000000 L$__func_armIrqHandler
00107c68 l F .text 00000000 L$_kernelState
00107c6c l F .text 00000000 L$_taskIdCurrent
00107c70 l F .text 00000000 L$_readyQHead
00107c74 l F .text 00000000 L$_evtAction
00107c78 l F .text 00000000 L$_wvEvtClass
00107c7c l F .text 00000000 L$_trgEvtClass
00107c80 l F .text 00000000 L$__func_evtLogT0
00107c84 l F .text 00000000 L$__func_trgCheck
00107c88 l F .text 00000000 L$_workQIsEmpty
00107c8c l F .text 00000000 $a
00107ca0 l F .text 00000000 $a
00107cb8 l F .text 00000000 $a
00107ccc l F .text 00000000 $a
00107ce4 l F .text 00000000 $a
00107ce8 l F .text 00000000 $a
00107d50 l F .text 00000000 $a
00107d50 l F .text 00000000 ARM_intExit
00107e78 l F .text 00000000 instrumentIntExit
00107d78 l F .text 00000000 resumeIntExit
00107df0 l F .text 00000000 intExit_RTI
00107e14 l F .text 00000000 saveIntContext
00107eac l F .text 00000000 trgCheckIntExit
00000000 l df *ABS* 00000000 intArchLib.c
00107f00 l F .text 00000000 $a
00107f00 l F .text 00000008 dummy
00159994 l O .data 00000004 intVecTable
00108298 l F .text 00000060 intUninitVec
001599a0 l O .data 00000004 intLockLevel
00159998 l O .data 00000004 intUserUninitRtn
0015999c l O .data 00000004 intNumVectors
001083d4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 trcLib.c
00108428 l F .text 00000000 $a
00108428 l F .text 000000e8 trcDefaultPrint
00108510 l F .text 00000054 trcFindCall
00108564 l F .text 00000024 trcFindDest
00108588 l F .text 00000008 trcCountArgs
00108590 l F .text 00000158 trcFindFuncStart
001086e8 l F .text 00000138 trcStackLvl
00108adc l O .text 00000000 $d
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21613
00108b30 l F .text 00000000 $a
00108b44 l F .text 00000000 $a
00108b80 l F .text 00000000 $a
00108bbc l F .text 00000000 L$_taskIdCurrent
00108bb4 l F .text 00000000 $a
00000000 l df *ABS* 00000000 vxLib.c
00108bc0 l F .text 00000000 $a
00108bc0 l F .text 0000001c vxMemProbeTrap
00108cf8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21630
00108d00 l F .text 00000000 $a
00108d00 l F .text 00000000 L$__fpStatus
00108d04 l F .text 00000000 L$_workQIsEmpty
00108d08 l F .text 00000000 L$_kernelState
00108d0c l F .text 00000000 L$_intCnt
00108d10 l F .text 00000000 L$_taskIdCurrent
00108d14 l F .text 00000000 L$_readyQHead
00108d18 l F .text 00000000 L$_errno
00108d1c l F .text 00000000 L$_evtAction
00108d20 l F .text 00000000 L$_wvEvtClass
00108d24 l F .text 00000000 L$_trgEvtClass
00108d28 l F .text 00000000 L$__func_evtLogT0
00108d2c l F .text 00000000 L$__func_evtLogTSched
00108d30 l F .text 00000000 L$__func_trgCheck
00108d34 l F .text 00000000 L$_kernelIsIdle
00108d38 l F .text 00000000 L$_taskSwapTable
00108d3c l F .text 00000000 L$_taskSwitchTable
00108d40 l F .text 00000000 windExitInt
00108d48 l F .text 00000000 windExitIntLoop
00108d6c l F .text 00000000 windExitIntNoWork
00108d90 l F .text 00000000 instrumentDispatch1
00108d7c l F .text 00000000 resumeDispatch1
00108dcc l F .text 00000000 trgInst1
00108e28 l F .text 00000000 checkTaskReady
00108f74 l F .text 00000000 saveTaskContext
00108e34 l F .text 00000000 checkWorkQ
00108f24 l F .text 00000000 doWorkPreSave
00108e84 l F .text 00000000 instrumentDispatch4
00108e60 l F .text 00000000 resumeDispatch4
00108ec4 l F .text 00000000 trgInst4
00108f1c l F .text 00000000 instTidy4
00108f50 l F .text 00000000 checkTaskSwitch
00108f40 l F .text 00000000 $a
00108fa8 l F .text 00000000 $a
001090ec l F .text 00000000 idle
00108fc0 l F .text 00000000 switchTasks
001091a4 l F .text 00000000 doSwapHooks
001091d8 l F .text 00000000 doSwitchHooks
00108ff4 l F .text 00000000 dispatch
001091f8 l F .text 00000000 doWorkUnlock
00109054 l F .text 00000000 instrumentDispatch3
00109038 l F .text 00000000 resumeDispatch3
00109090 l F .text 00000000 trgInst3
00109130 l F .text 00000000 instrumentIdle
001090fc l F .text 00000000 resumeIdle
00109118 l F .text 00000000 idleLoop
00109204 l F .text 00000000 doWork
00109160 l F .text 00000000 idleCheckTrg
001091a8 l F .text 00000000 doSwapHooksLoop
00109228 l F .text 00000000 $a
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21685
0010922c l F .text 00000000 $a
0010922c l F .text 00000000 L$_errno
00109230 l F .text 00000000 L$_pJobPool
00109234 l F .text 00000000 L$_workQReadIx
00109238 l F .text 00000000 L$_workQWriteIx
0010923c l F .text 00000000 L$_workQIsEmpty
00109374 l F .text 00000000 L0_workQDoWork
00000000 l df *ABS* 00000000 dbgArmLib.c
001093b0 l F .text 00000000 $a
001093b0 l F .text 000000f8 armShiftedRegVal
00159a60 l O .data 00000040 ccTable
001094f0 l O .text 00000000 $d
001094fc l F .text 00000000 $a
00109620 l O .text 00000000 $d
00109630 l F .text 00000000 $a
001097f0 l O .text 00000000 $d
001097fc l F .text 00000000 $a
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21556
00109890 l F .text 00000000 $a
00159aa4 l O .data 00000000 undefSaveArea
00159abc l O .data 00000000 abortSaveArea
00159ad4 l O .data 00000000 swiSaveArea
00159b1c l O .data 00000000 irqStack
00109890 l F .text 00000000 L$_undefSaveArea
00109894 l F .text 00000000 L$_abortSaveArea
00109898 l F .text 00000000 L$_swiSaveArea
0010989c l F .text 00000000 L$_irqStack
001098a0 l F .text 00000000 $a
001098ec l F .text 00000000 $a
00109970 l F .text 00000000 L$excEnterCommon2
00109928 l F .text 00000000 $a
00109954 l F .text 00000000 L$excEnterCommon
00109938 l F .text 00000000 $a
00109948 l F .text 00000000 $a
001099c0 l F .text 00000000 L$regsSaved
00109a34 l F .text 00000000 L$regsRestored
00000000 l df *ABS* 00000000 _tmp_wrapper.c
00000000 l df *ABS* 00000000 arm_div.s
00109a58 l F .text 00000000 $a
00109a58 l F .text 0000004c __ff1l
00109aa4 l F .text 00000070 div32
00109b64 l O .text 00000000 $d
00000000 l df *ABS* 00000000 endLib.c
00109b68 l F .text 00000000 $a
0010a3cc l O .text 00000000 $d
00000000 l df *ABS* 00000000 if_loop.c
0010a3e0 l F .text 00000000 $a
0010a5dc l F .text 000000a8 loioctl
0010a5c0 l F .text 0000001c lortrequest
0010a684 l O .text 00000000 $d
00000000 l df *ABS* 00000000 _tmp_wrapper.c
0010a6b8 l .text 00000000 .gcc2_compiled.
00000000 l df *ABS* 00000000 libgcc1.S
0010a758 l .text 00000000 Ldiv0
0010a748 l .text 00000000 Lgot_result
0010a6e0 l .text 00000000 Loop1
0010a6f4 l .text 00000000 Lbignum
0010a708 l .text 00000000 Loop3
00000000 l df *ABS* 00000000 _tmp_wrapper.c
0010a768 l .text 00000000 .gcc2_compiled.
00000000 l df *ABS* 00000000 libgcc1.S
00000000 l df *ABS* 00000000 if.c
0010a76c l F .text 00000000 $a
00159b50 l O .data 00000001 wvNetModuleId
0010b4a4 l F .text 0000004c sprint_d
0010b754 l O .text 00000000 $d


菜鸟
2005-08-17 04:46:00     打赏
7楼

第(2)部分:

0010b778 l F .text 00000000 $a
0010ba08 l O .text 00000000 $d
0010ba0c l F .text 00000000 $a
00159b5c l O .data 00000004 ifqmaxlen
0010bd54 l F .text 000000d8 ifMultiDelete
0010bd64 l O .text 00000000 $d
0010bd70 l F .text 00000000 $a
0010be88 l O .text 00000000 $d
0010be98 l F .text 00000000 $a
0010bfa4 l O .text 00000000 $d
0010bfac l F .text 00000000 $a
00159b51 l O .data 00000001 wvNetLocalFilter
00159b54 l O .data 00000004 wvNetEventId
00159b58 l O .data 00000004 ifslowtimoWd
0010bfcc l O .text 00000000 $d
00000000 l df *ABS* 00000000 if_ether.c
0010c08c l F .text 00000000 $a
0010c0c4 l F .text 00000204 arprequest
00159c20 l O .data 00000001 wvNetModuleId
00159c24 l O .data 00000004 wvNetEventId
0010c3e4 l F .text 0000010c arptimer
0010c4f0 l F .text 000000c8 arplookup
00159c10 l O .data 00000010 sin.156
0010ca24 l F .text 0000003c arpEntryDelete
00159c28 l O .data 00000004 arptimerWd
00159bfa l O .data 00000014 null_sdl.11
0010d014 l O .text 00000000 $d
0010d030 l F .text 00000000 $a
0010d13c l O .text 00000000 $d
0010d154 l F .text 00000000 $a
0010d284 l O .text 00000000 $d
0010d2a0 l F .text 00000000 $a
0010d3d4 l O .text 00000000 $d
0010d3e0 l F .text 00000000 $a
0010d488 l O .text 00000000 $d
0010d490 l F .text 00000000 $a
0010d540 l O .text 00000000 $d
0010d54c l F .text 00000000 $a
0010d6f8 l O .text 00000000 $d
0010d704 l F .text 00000000 $a
0015d93d l O .bss 00000012 etherbuf.234
00159be8 l O .data 00000011 digits
0010d78c l F .text 00000980 in_arpinput
0010d880 l O .text 00000000 $d
0010d88c l F .text 00000000 $a
0010d9d4 l O .text 00000000 $d
0010d9e8 l F .text 00000000 $a
0010dba0 l O .text 00000000 $d
0010dbc0 l F .text 00000000 $a
0010dcc4 l O .text 00000000 $d
0010dcd0 l F .text 00000000 $a
0010de30 l O .text 00000000 $d
0010de40 l F .text 00000000 $a
0010df1c l O .text 00000000 $d
0010df40 l F .text 00000000 $a
0010e0c0 l F .text 00000000 $a
0010e1a8 l O .text 00000000 $d
0010e1b0 l F .text 00000000 $a
0010e33c l O .text 00000000 $d
0010e344 l F .text 00000000 $a
0010e3bc l F .text 00000054 db_print_ifa
0010e410 l F .text 00000020 db_print_llinfo
0010e430 l F .text 000000e0 db_show_radix_node
0010e534 l F .text 00000000 $a
00159c21 l O .data 00000001 wvNetLocalFilter
0010e558 l O .text 00000000 $d
00000000 l df *ABS* 00000000 if_subr.c
0010e644 l F .text 00000000 $a
00159f10 l O .data 00000001 wvNetModuleId
0010f60c l O .text 00000000 $d
0010f628 l F .text 00000000 $a
0010f744 l O .text 00000000 $d
0010f750 l F .text 00000000 $a
0010f8c4 l O .text 00000000 $d
0010f8cc l F .text 00000000 $a
0010f9d0 l O .text 00000000 $d
0010f9dc l F .text 00000000 $a
0010faf0 l O .text 00000000 $d
0010faf8 l F .text 00000000 $a
0010fc14 l F .text 00000000 $a
0010fcc4 l O .text 00000000 $d
0010fcd0 l F .text 00000000 $a
0015d950 l O .bss 0000000c netTypeList
00159f11 l O .data 00000001 wvNetLocalFilter
00159f14 l O .data 00000004 wvNetEventId
0010fd54 l O .text 00000000 $d
00000000 l df *ABS* 00000000 in.c
0010fdd8 l F .text 00000000 $a
00159f6c l O .data 00000001 wvNetModuleId
00110d6c l O .text 00000000 $d
00110d80 l F .text 00000000 $a
00110ebc l O .text 00000000 $d
00110ec4 l F .text 00000000 $a
00110fb4 l O .text 00000000 $d
00110fc4 l F .text 00000000 $a
001110c0 l O .text 00000000 $d
001110e0 l F .text 00000000 $a
0011129c l O .text 00000000 $d
001112a8 l F .text 00000000 $a
001113fc l O .text 00000000 $d
0011140c l F .text 00000000 $a
0011161c l O .text 00000000 $d
00111628 l F .text 00000000 $a
00111720 l O .text 00000000 $d
0011172c l F .text 00000000 $a
00111844 l O .text 00000000 $d
0011184c l F .text 00000000 $a
00111960 l O .text 00000000 $d
00111970 l F .text 00000000 $a
00159f6d l O .data 00000001 wvNetLocalFilter
00159f70 l O .data 00000004 wvNetEventId
00111a44 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ip_input.c
00111ac8 l F .text 00000000 $a
00111ac8 l F .text 000003f4 ipReAssemble
0015a004 l O .data 00000001 wvNetModuleId
00112a98 l O .text 00000000 $d
00112aa4 l F .text 00000000 $a
00112d44 l O .text 00000000 $d
00112d68 l F .text 00000000 $a
00112e70 l O .text 00000000 $d
00112e7c l F .text 00000000 $a
00112fe4 l O .text 00000000 $d
00113004 l F .text 00000000 $a
001130cc l O .text 00000000 $d
001130e0 l F .text 00000000 $a
00113254 l O .text 00000000 $d
0011325c l F .text 00000000 $a
0011343c l O .text 00000000 $d
00113448 l F .text 00000000 $a
00113630 l O .text 00000000 $d
00113638 l F .text 00000000 $a
0011378c l O .text 00000000 $d
00113794 l F .text 00000000 $a
001138bc l O .text 00000000 $d
001138c0 l F .text 00000000 $a
001139d8 l O .text 00000000 $d
001139dc l F .text 00000000 $a
00113a74 l F .text 00000000 $a
00113b90 l F .text 00000000 $a
0015a005 l O .data 00000001 wvNetLocalFilter
0015a008 l O .data 00000004 wvNetEventId
00113c10 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ip_output.c
00113ca4 l F .text 00000000 $a
00113ca4 l F .text 000000f8 ip_insertoptions
00113fa4 l F .text 00000478 ip_setmoptions
0015a014 l O .data 00000001 wvNetModuleId
0011462c l O .text 00000000 $d
0011465c l F .text 00000000 $a
00114834 l O .text 00000000 $d
00114858 l F .text 00000000 $a
00115884 l O .text 00000000 $d
00115894 l F .text 00000000 $a
00115998 l O .text 00000000 $d
001159ac l F .text 00000000 $a
00115ab8 l O .text 00000000 $d
00115ac8 l F .text 00000000 $a
00115bc4 l O .text 00000000 $d
00115bd0 l F .text 00000000 $a
00115d44 l O .text 00000000 $d
00115d50 l F .text 00000000 $a
00115eec l O .text 00000000 $d
00115ef4 l F .text 00000000 $a
0011605c l O .text 00000000 $d
00116060 l F .text 00000000 $a
0015a015 l O .data 00000001 wvNetLocalFilter
0015a018 l O .data 00000004 wvNetEventId
001160b0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 radix.c
0011611c l F .text 00000000 $a
00116270 l F .text 0000008c rn_satsifies_leaf
0015a038 l O .data 00000004 rn_ones
0015a030 l O .data 00000004 addmask_key
0015a028 l O .data 00000001 wvNetModuleId
0015a01c l O .data 00000009 normal_chars
001169c4 l F .text 00000054 rn_lexobetter
00116a18 l F .text 00000138 rn_new_radix_mask
001171b0 l O .text 00000000 $d
001171b4 l F .text 00000000 $a
00117344 l F .text 00000000 $a
00117490 l F .text 00000000 $a
00117630 l O .text 00000000 $d
00117640 l F .text 00000000 $a
00117710 l O .text 00000000 $d
00117728 l F .text 00000000 $a
001177e0 l O .text 00000000 $d
001177ec l F .text 00000000 $a
001179b8 l O .text 00000000 $d
001179c8 l F .text 00000000 $a
0015a029 l O .data 00000001 wvNetLocalFilter
0015a02c l O .data 00000004 wvNetEventId
0015a034 l O .data 00000004 rn_zeros
0015a03c l O .data 00000004 last_zeroed.102
00117b94 l O .text 00000000 $d
00000000 l df *ABS* 00000000 route.c
00117c2c l F .text 00000000 $a
0015a1b0 l O .data 00000001 wvNetModuleId
00117d74 l F .text 00000120 routeKillCheck
001194bc l F .text 000000d4 routeUpdate
0015a1b8 l O .data 00000004 routePendInterval
00118bc0 l O .text 00000000 $d
00118be8 l F .text 00000000 $a
00118cd8 l O .text 00000000 $d
00118ce4 l F .text 00000000 $a
00118eb4 l O .text 00000000 $d
00118ebc l F .text 00000000 $a
00118fec l O .text 00000000 $d
00118ffc l F .text 00000000 $a
00119138 l O .text 00000000 $d
0011914c l F .text 00000000 $a
001192ec l O .text 00000000 $d
00119308 l F .text 00000000 $a
00119590 l F .text 000000cc rt_fixchange
001193fc l O .text 00000000 $d
0011940c l F .text 00000000 $a
0011964c l O .text 00000000 $d
00119650 l F .text 00000000 $a
00119798 l O .text 00000000 $d
001197a0 l F .text 00000000 $a
001198d4 l O .text 00000000 $d
001198ec l F .text 00000000 $a
001199f8 l O .text 00000000 $d
001199fc l F .text 00000000 $a
00119b5c l O .text 00000000 $d
00119b74 l F .text 00000000 $a
00119c6c l O .text 00000000 $d
00119c7c l F .text 00000000 $a
00119d78 l O .text 00000000 $d
00119d84 l F .text 00000000 $a
00119e24 l O .text 00000000 $d
00119e28 l F .text 00000000 $a
00119f98 l F .text 00000000 $a
0015a1b1 l O .data 00000001 wvNetLocalFilter
0015a1b4 l O .data 00000004 wvNetEventId
0015a1bc l O .data 00000004 routeKillTimer
0015a1c0 l O .data 00000004 routeKillInterval
0015a1c4 l O .data 00000004 routePendMinimum
0015a1c8 l O .data 00000004 routeExpireChange
0015a1cc l O .data 00000004 routePendLimit
0011a040 l O .text 00000000 $d
00000000 l df *ABS* 00000000 udp_usrreq.c
0011a0a4 l F .text 00000000 $a
0015a280 l O .data 00000001 wvNetModuleId
0011a164 l F .text 00000064 udp_saveopt
0011b0a0 l O .text 00000000 $d
0011b0d0 l F .text 00000000 $a
0011b1d8 l O .text 00000000 $d
0011b1ec l F .text 00000000 $a
0011b318 l O .text 00000000 $d
0011b324 l F .text 00000000 $a
0011b494 l O .text 00000000 $d
0011b4a0 l F .text 00000000 $a
0011b584 l O .text 00000000 $d
0011b598 l F .text 00000000 $a
0011b5bc l F .text 000000fc udp_notify
0011b6b0 l O .text 00000000 $d
0011b6b8 l F .text 00000000 $a
0011bbac l F .text 00000038 udp_detach
0011bcb4 l O .text 00000000 $d
0011bcbc l F .text 00000000 $a
0011bd70 l O .text 00000000 $d
0011bdf8 l F .text 00000000 $a
0015a281 l O .data 00000001 wvNetLocalFilter
0015a284 l O .data 00000004 wvNetEventId
0011c0a8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 uipc_dom.c
0011c0e0 l F .text 00000000 $a
0011c310 l F .text 0000008c pfslowtimo
0015d95c l O .bss 00000004 pfslowtimoWd
0011c39c l F .text 00000088 pffasttimo
0015d960 l O .bss 00000004 pffasttimoWd
0011c4d8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 uipc_mbuf.c
0011c4fc l F .text 00000000 $a
0011c4fc l F .text 00000168 _netStackPoolInit
0015a2c4 l O .data 00000001 wvNetModuleId
0011c758 l F .text 0000006c _bufCollect
0015a2cc l O .data 00000004 MPFail
0015d964 l O .bss 00000058 _netDpool
0015d9bc l O .bss 00000058 _netSysPool
0015a2c5 l O .data 00000001 wvNetLocalFilter
0015a2c8 l O .data 00000004 wvNetEventId
0011cf00 l O .text 00000000 $d
00000000 l df *ABS* 00000000 uipc_sock2.c
0011cf7c l F .text 00000000 $a
0015a330 l O .data 00000001 wvNetModuleId
0011df90 l F .text 00000000 $a
0011e0d8 l O .text 00000000 $d
0011e0f4 l F .text 00000000 $a
0011e1f0 l O .text 00000000 $d
0011e1fc l F .text 00000000 $a
0015a331 l O .data 00000001 wvNetLocalFilter
0015a334 l O .data 00000004 wvNetEventId
0011e2d4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 unixLib.c
0011e318 l F .text 00000000 $a
0015a390 l O .data 00000001 wvNetModuleId
0015a391 l O .data 00000001 wvNetLocalFilter
0015a394 l O .data 00000004 wvNetEventId
0011e664 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bootpLib.c
0011e6a8 l F .text 00000000 $a
0015db5c l O .bss 00000004 bootpInitialized
0015a3bc l O .data 000000c8 bootpfilter
0015a484 l O .data 00000008 bootpread
0015da14 l O .bss 00000148 bootpMsg
0011ed18 l F .text 0000011c bootpTagFind
0015a48c l O .data 00000004 magicCookie1048
0011ee34 l F .text 000019bc bootpParamsFill
0011f638 l O .text 00000000 $d
0011f648 l F .text 00000000 $a
0011f748 l O .text 00000000 $d
0011f770 l F .text 00000000 $a
0011f8a0 l O .text 00000000 $d
0011f8b8 l F .text 00000000 $a
0011f9a4 l F .text 00000000 $a
0011faa4 l F .text 00000000 $a
0011fca8 l O .text 00000000 $d
0011fcb8 l F .text 00000000 $a
0011ffd4 l F .text 00000000 $a
001200b4 l F .text 00000000 $a
001201f8 l F .text 00000000 $a
0012030c l F .text 00000000 $a
00120424 l F .text 00000000 $a
0012056c l F .text 00000000 $a
00120714 l F .text 00000000 $a
001207f0 l F .text 000000d4 bootpConvert
00120804 l O .text 00000000 $d
00120808 l F .text 00000000 $a
0015a490 l O .data 00000001 endOfVend
0015db60 l O .bss 00000004 bootpBufSize
0015db64 l O .bss 00000004 pMsgBuffer
00120aa0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ipProto.c
00120ab4 l F .text 00000000 $a
00120ab4 l F .text 000002a8 ipReceiveRtn
0015a4bc l O .data 00000001 wvNetModuleId
00120c04 l O .text 00000000 $d
00120c28 l F .text 00000000 $a
00120d5c l F .text 000000c4 ipTkReceiveRtn
00120e20 l F .text 000000b4 ipShutdownRtn
00120ed4 l F .text 00000084 arpShutdownRtn
00120f58 l F .text 000000b0 ipTkShutdownRtn
00121008 l F .text 00000090 arpTkShutdownRtn
00121098 l F .text 00000148 ipError
00121b50 l F .text 0000001c ipTkTxRestart
00121b6c l F .text 00000020 ipTxRestart
00121cb0 l F .text 0000044c ipIoctl
001220fc l F .text 00000890 ipOutput
00121634 l O .text 00000000 $d
001216dc l F .text 00000000 $a
0012195c l F .text 000001f4 ipTxStartup
00121dbc l O .text 00000000 $d
00121e38 l F .text 00000000 $a
001229a0 l F .text 00000044 ipMcastResume
0012298c l F .text 00000014 ipOutputResume
001224e8 l O .text 00000000 $d
00122538 l F .text 00000000 $a
0015a4bd l O .data 00000001 wvNetLocalFilter
0015a4c0 l O .data 00000004 wvNetEventId
00122a00 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bsdSockLib.c
00122a30 l F .text 00000000 $a
0015a7a8 l O .data 00000004 bsdSockDrvNum
00122e54 l F .text 000000b8 bsdSockRead
00122ccc l F .text 000000b4 bsdSockWrite
00122aa0 l F .text 00000054 bsdSockClose
0015db68 l O .bss 00000010 bsdSockDev
0015a7ac l O .data 00000004 bsdSockName
001230a8 l F .text 00000098 bsdSockargs
00123730 l F .text 00000014 bsdSockAddrRevert
00123a00 l O .text 00000000 $d
00123a24 l F .text 00000000 $a
00123be8 l F .text 00000000 $a
00123ef8 l F .text 00000000 $a
001240a0 l O .text 00000000 $d
001240a4 l F .text 00000000 $a
0012412c l O .text 00000000 $d
00000000 l df *ABS* 00000000 etherMultiLib.c
0012413c l F .text 00000000 $a
00124418 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ftpLib.c
00124430 l F .text 00000000 $a
00124fec l F .text 00000038 ftpTransientFatal
0012503c l F .text 0000018c ftpPasvReplyParse
0015db78 l O .bss 00000100 pasvReplyString
00125420 l O .text 00000000 $d
00125428 l F .text 00000000 $a
00125548 l O .text 00000000 $d
00125558 l F .text 00000000 $a
00125654 l O .text 00000000 $d
00125668 l F .text 00000000 $a
001257d4 l O .text 00000000 $d
001257e0 l F .text 00000000 $a
00125950 l O .text 00000000 $d
00125960 l F .text 00000000 $a
00125a48 l O .text 00000000 $d
00125a50 l F .text 00000000 $a
00125b6c l O .text 00000000 $d
00125b7c l F .text 00000000 $a
00125c94 l O .text 00000000 $d
00125ca0 l F .text 00000000 $a
00125d30 l O .text 00000000 $d
00125d38 l F .text 00000000 $a
00125dcc l O .text 00000000 $d
00125dd0 l F .text 00000000 $a
00125ef8 l O .text 00000000 $d
00125f1c l F .text 00000000 $a
00125f6c l O .text 00000000 $d
00000000 l df *ABS* 00000000 hostLib.c
00126008 l F .text 00000000 $a
00126388 l F .text 00000044 hostNameFill
0015dc78 l O .bss 00000080 targetName
001265b8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 icmpLib.c
001265e0 l F .text 00000000 $a
0015b394 l O .data 00000004 maskReplyReceived
0015dcf8 l O .bss 00000030 icmpMsg
00126afc l F .text 00000178 icmpMaskNptInput
00126c74 l F .text 00000178 icmpMaskEndInput
0015b398 l O .data 00000004 icmpMask
00126dec l O .text 00000000 $d
00000000 l df *ABS* 00000000 ifLib.c
00126e48 l F .text 00000000 $a
00126fc8 l F .text 0000006c ifIoctlCall
00127034 l F .text 0000006c ifIoctlGet
001270a0 l F .text 00000074 ifIoctlSet
00127114 l F .text 00000188 ifIoctl
00127150 l O .text 00000000 $d
0012716c l F .text 00000000 $a
001271bc l O .text 00000000 $d
001271c4 l F .text 00000000 $a
001273a4 l F .text 00000060 ifAddrParamGet
00127598 l F .text 00000084 _routeNodeDelete
0012761c l F .text 00000120 routeNodeDelete
001279f0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 igmpLib.c
00127a3c l F .text 00000000 $a
00127aec l O .text 00000000 $d
00000000 l df *ABS* 00000000 inetLib.c
00127b14 l F .text 00000000 $a
00128104 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ipLib.c
00128124 l F .text 00000000 $a
0012833c l O .text 00000000 $d
00000000 l df *ABS* 00000000 muxLib.c
0012837c l F .text 00000000 $a
0015dd28 l O .bss 00000018 muxLibState
0015dd4c l O .bss 00000768 addrResList
0015dd40 l O .bss 0000000c endList
00129cac l F .text 00000008 muxDevStopAllImmediate
00129cb4 l F .text 000000ec muxEndFlagsNotify
001292f4 l O .text 00000000 $d
00129308 l F .text 00000000 $a
001293d0 l O .text 00000000 $d
001293d4 l F .text 00000000 $a
0012954c l O .text 00000000 $d
00129564 l F .text 00000000 $a
00129680 l F .text 00000000 $a
0012973c l O .text 00000000 $d
00129740 l F .text 00000000 $a
001298bc l O .text 00000000 $d
001298c8 l F .text 00000000 $a
001299d0 l O .text 00000000 $d
001299d4 l F .text 00000000 $a
00129d74 l F .text 00000000 $a
0015e4b4 l O .bss 00000004 pMuxPollMblkRing
0012a1e8 l O .text 00000000 $d
0012a1ec l F .text 00000000 $a
0015e4bc l O .bss 00000004 muxPollDevCount
0012a338 l O .text 00000000 $d
0012a34c l F .text 00000000 $a
0012a4c4 l O .text 00000000 $d
0012a4e4 l F .text 00000000 $a
0015e4b8 l O .bss 00000004 ppMuxPollDevices
0015e4c0 l O .bss 00000004 muxPollDevMax
0012a50c l O .text 00000000 $d
00000000 l df *ABS* 00000000 muxTkLib.c
0012a570 l F .text 00000000 $a
0015e4c4 l O .bss 00000004 muxBindBase
0012a870 l F .text 00000238 _muxTkSend
0012ad00 l F .text 000000b4 muxEndRcvRtn
0012adb4 l F .text 000001e0 muxTkBibEntryGet
0012af94 l F .text 00000084 muxTkBibEntryFill
0012b44c l F .text 0000006c muxTkBibEntryFree
0012b55c l O .text 00000000 $d
0012b56c l F .text 00000000 $a
0012b6fc l O .text 00000000 $d
0012b704 l F .text 00000000 $a
0012b7fc l O .text 00000000 $d
0012b804 l F .text 00000000 $a
0012b8d0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 netLib.c
0012b960 l F .text 00000000 $a
0015e4f0 l O .bss 00000004 netJobRing
0015e4c8 l O .bss 00000028 netTaskSem
0012bba8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 remLib.c
0012bbe8 l F .text 00000000 $a
0015e4f4 l O .bss 00000064 remUser
0015e558 l O .bss 00000064 remPasswd
0012c2cc l O .text 00000000 $d
00000000 l df *ABS* 00000000 routeLib.c
0012c300 l F .text 00000000 $a
0012c418 l F .text 00000070 routeChange
0012c98c l O .text 00000000 $d
00000000 l df *ABS* 00000000 routeCommonLib.c
0012c994 l F .text 00000000 $a
0012cba4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 sockLib.c
0012cba8 l F .text 00000000 $a
0015b890 l O .data 00000004 sockFdMax
0015b88c l O .data 00000004 pSockLibMapH
0012d564 l O .text 00000000 $d
00000000 l df *ABS* 00000000 tcpLib.c
0012d570 l F .text 00000000 $a
0012d6bc l O .text 00000000 $d
00000000 l df *ABS* 00000000 tftpLib.c
0012d714 l F .text 00000000 $a
0015b948 l O .data 00000030 tftpModes.27
0012da44 l F .text 000000b0 fileToAscii
0012daf4 l F .text 000000e8 asciiToFile
0012dbdc l F .text 00000070 tftpRequestCreate
0015b978 l O .data 00000048 tftpErrors.157
0012dcf8 l F .text 00000144 tftpPacketTrace
0015b9c0 l O .data 00000018 tftpOpCodes.168
0012e69c l O .text 00000000 $d
0012e6ac l F .text 00000000 $a
0012e6fc l F .text 000001b4 connectOverLoopback
0012e7c4 l O .text 00000000 $d
0012e7d4 l F .text 00000000 $a
0012e868 l O .text 00000000 $d
0012e898 l F .text 00000000 $a
0012e8b0 l F .text 00000058 tftpParamCleanUp
0012e9ec l F .text 00000000 $a
0012ebcc l F .text 0000008c tftpChildTaskSpawn
0012eba8 l O .text 00000000 $d
0012ebc0 l F .text 00000000 $a
0012ec58 l O .text 00000000 $d
00000000 l df *ABS* 00000000 udpLib.c
0012eccc l F .text 00000000 $a
0012edc8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 netBufLib.c
0012edf8 l F .text 00000000 $a
0012edf8 l F .text 00000048 _mBlkCarve
0012ee40 l F .text 00000034 _clBlkCarve
0012ee74 l F .text 00000044 _clPoolCarve
0012eeb8 l F .text 0000006c _memPoolInit
0012ef24 l F .text 0000005c _mBlkFree
0012ef80 l F .text 000000b0 _clBlkFree
0012f030 l F .text 0000004c _clFree
0012f07c l F .text 000000e8 _mBlkGet
0012f164 l F .text 00000090 _clBlkGet
0012f1f4 l F .text 00000074 _clusterGet
0012f268 l F .text 00000228 _mClGet
0012f490 l F .text 00000064 _clPoolIdGet
0012f628 l F .text 0000034c _poolInit
0012f9ec l F .text 00000058 _mBlkClFree
0012fddc l O .text 00000000 $d
0012fde8 l F .text 00000000 $a
0012ffc4 l O .text 00000000 $d
0012ffc8 l F .text 00000000 $a
00130068 l O .text 00000000 $d
00130070 l F .text 00000000 $a
0015bcc8 l O .data 00000028 dfltFuncTbl
001301a8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ifIndexLib.c
001301cc l F .text 00000000 $a
0015bcf4 l O .data 00000004 ifIndexValue
0015bcf8 l O .data 00000004 ifIndexSem
001302d4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bpfDrv.c
001302d8 l F .text 00000000 $a
001312bc l O .text 00000000 $d
001312e0 l F .text 00000000 $a
001313ac l O .text 00000000 $d
001313b4 l F .text 00000000 $a
0015bd0c l O .data 00000004 timeStamp.187
00131514 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bpfProto.c
00131570 l F .text 00000000 $a
00131e18 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bpf_filter.c
00131e68 l F .text 00000000 $a
00131e68 l F .text 00000128 m_xword
00131f90 l F .text 00000090 m_xhalf
00132084 l O .text 00000000 $d
00132088 l F .text 00000000 $a
00132aa4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 igmp.c
00132ab0 l F .text 00000000 $a
0015be18 l O .data 00000001 wvNetModuleId
001338a4 l F .text 00000138 igmp_joingroup
0013379c l F .text 00000108 igmp_leavegroup
00132bc0 l F .text 00000064 find_rti
0015be2c l O .data 00000004 igmp_all_hosts_group
0015be20 l O .data 00000004 igmp_timers_are_running
0015be28 l O .data 00000004 Head
001333f8 l F .text 0000027c igmp_sendpkt
0015be24 l O .data 00000004 router_alert
0015e5bc l O .bss 00000014 igmprt
0015be19 l O .data 00000001 wvNetLocalFilter
0015be1c l O .data 00000004 wvNetEventId
0015be30 l O .data 00000004 igmp_all_rtrs_group
001339dc l O .text 00000000 $d
00000000 l df *ABS* 00000000 in_pcb.c
00133aa0 l F .text 00000000 $a
0015be34 l O .data 00000001 wvNetModuleId
00134aac l O .text 00000000 $d
00134acc l F .text 00000000 $a
00134be8 l O .text 00000000 $d
00134bec l F .text 00000000 $a
00134d00 l F .text 00000000 $a
00134f24 l O .text 00000000 $d
00134f2c l F .text 00000000 $a
001350ec l O .text 00000000 $d
001350fc l F .text 00000000 $a
0015be35 l O .data 00000001 wvNetLocalFilter
0015be38 l O .data 00000004 wvNetEventId
0013514c l O .text 00000000 $d
00000000 l df *ABS* 00000000 in_proto.c
00000000 l df *ABS* 00000000 ip_icmp.c
001351c8 l F .text 00000000 $a
001355c8 l F .text 000004e8 icmp_error
0015be88 l O .data 00000010 icmpsrc
0015be98 l O .data 00000010 icmpdst
0015bea8 l O .data 00000010 icmpgw
0015beb8 l O .data 00000080 mtuTable
0015bf40 l O .data 00000004 mtuTableSize
00135284 l F .text 00000140 icmp_send
0015bf38 l O .data 00000001 wvNetModuleId
001353c4 l F .text 00000204 icmp_reflect
00135ab0 l F .text 000000d4 ip_next_mtu
00135f20 l O .text 00000000 $d
00135fcc l F .text 00000000 $a
00136028 l O .text 00000000 $d
0013602c l F .text 00000000 $a
0015bf39 l O .data 00000001 wvNetLocalFilter
0015bf3c l O .data 00000004 wvNetEventId
00136514 l O .text 00000000 $d
00000000 l df *ABS* 00000000 raw_ip.c
00136560 l F .text 00000000 $a
0015bf70 l O .data 00000001 wvNetModuleId
0015e5d0 l O .bss 00000004 ripcb
0015e5d4 l O .bss 00000010 ripcbinfo
0015bf58 l O .data 00000010 ripsrc
00136df4 l O .text 00000000 $d
00136e74 l F .text 00000000 $a
001372e8 l F .text 0000006c _mCastCtlOutput
0015bf71 l O .data 00000001 wvNetLocalFilter
0015bf74 l O .data 00000004 wvNetEventId
001376a4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 sys_socket.c
00137708 l F .text 00000000 $a
0015bf9c l O .data 00000001 wvNetModuleId
0015bf9d l O .data 00000001 wvNetLocalFilter
0015bfa0 l O .data 00000004 wvNetEventId
00137b60 l O .text 00000000 $d
00000000 l df *ABS* 00000000 tcp_input.c
00137b9c l F .text 00000000 $a
0015bfb0 l O .data 00000001 wvNetModuleId
00138c0c l O .text 00000000 $d
00138c30 l F .text 00000000 $a
00138dcc l O .text 00000000 $d
00138dd4 l F .text 00000000 $a
00138f28 l F .text 00000000 $a
00139038 l O .text 00000000 $d
00139044 l F .text 00000000 $a
0013913c l O .text 00000000 $d
0013914c l F .text 00000000 $a
001392bc l F .text 00000000 $a
00139404 l O .text 00000000 $d
0013940c l F .text 00000000 $a
00139530 l O .text 00000000 $d
00139538 l F .text 00000000 $a
00139668 l O .text 00000000 $d
00139678 l F .text 00000000 $a
00139824 l O .text 00000000 $d
0013982c l F .text 00000000 $a
0013995c l O .text 00000000 $d
00139960 l F .text 00000000 $a
00139ac0 l O .text 00000000 $d
00139ac8 l F .text 00000000 $a
00139bd0 l O .text 00000000 $d
00139bf8 l F .text 00000000 $a
00139ca8 l O .text 00000000 $d
00139cac l F .text 00000000 $a
00139d68 l O .text 00000000 $d
00139dbc l F .text 00000000 $a
00139fac l O .text 00000000 $d
00139fe0 l F .text 00000000 $a
0013afec l O .text 00000000 $d
0013b014 l F .text 00000000 $a
0015bfb1 l O .data 00000001 wvNetLocalFilter
0015bfb4 l O .data 00000004 wvNetEventId
0013b0c8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 tcp_output.c
0013b11c l F .text 00000000 $a
0015bfd8 l O .data 00000001 wvNetModuleId
0015bfd9 l O .data 00000001 wvNetLocalFilter
0015bfdc l O .data 00000004 wvNetEventId
0013bf4c l O .text 00000000 $d
00000000 l df *ABS* 00000000 tcp_subr.c
0013bfa8 l F .text 00000000 $a
0015c010 l O .data 00000001 wvNetModuleId
0015c011 l O .data 00000001 wvNetLocalFilter
0015c014 l O .data 00000004 wvNetEventId
0013cee0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 tcp_timer.c
0013cfa8 l F .text 00000000 $a
0015c070 l O .data 00000001 wvNetModuleId
0015c071 l O .data 00000001 wvNetLocalFilter
0015c074 l O .data 00000004 wvNetEventId
0013d634 l O .text 00000000 $d
00000000 l df *ABS* 00000000 tcp_usrreq.c
0013d6a0 l F .text 00000000 $a
0015c088 l O .data 00000001 wvNetModuleId
0013db20 l O .text 00000000 $d
0013db6c l F .text 00000000 $a
0013df6c l O .text 00000000 $d
0013dfa8 l F .text 00000000 $a
0013e504 l F .text 00000004 tcpTraceStub
0013e508 l F .text 00000004 tcpReportStub
0015c089 l O .data 00000001 wvNetLocalFilter
0015c08c l O .data 00000004 wvNetEventId
0013e50c l O .text 00000000 $d
00000000 l df *ABS* 00000000 uipc_sock.c
0013e554 l F .text 00000000 $a
0015c09c l O .data 00000001 wvNetModuleId
0013f554 l O .text 00000000 $d
0013f578 l F .text 00000000 $a
0013f660 l O .text 00000000 $d
0013f664 l F .text 00000000 $a
0013f708 l O .text 00000000 $d
0013f710 l F .text 00000000 $a
0013f7bc l O .text 00000000 $d
0013f7c8 l F .text 00000000 $a
0013f864 l O .text 00000000 $d
0013f86c l F .text 00000000 $a
0013f940 l O .text 00000000 $d
0013f948 l F .text 00000000 $a
0013f9f4 l O .text 00000000 $d
0013fa6c l F .text 00000000 $a
00140a5c l O .text 00000000 $d
00140a60 l F .text 00000000 $a
0015c09d l O .data 00000001 wvNetLocalFilter
0015c0a0 l O .data 00000004 wvNetEventId
00140bbc l O .text 00000000 $d
00000000 l df *ABS* 00000000 random.c


菜鸟
2005-08-17 04:49:00     打赏
8楼

0140bf8 l F .text 00000000 $a
0015c17c l O .data 00000004 state
0015c0d4 l O .data 00000014 degrees
0015c0e8 l O .data 00000014 seps
0015c18c l O .data 00000004 fptr
0015c184 l O .data 00000004 rptr
0015c0fc l O .data 00000080 randtbl
0015c180 l O .data 00000004 rand_type
0015c188 l O .data 00000004 rand_deg
0015c190 l O .data 00000004 rand_sep
0015c194 l O .data 00000004 end_ptr
00140f4c l O .text 00000000 $d
00000000 l df *ABS* 00000000 etherLib.c
00140f70 l F .text 00000000 $a
0015c1fc l O .data 00000004 etherInputHookActive
0015e5e4 l O .bss 0000000c inputHookList
0014177c l F .text 000000f8 nptEtherInputHookRtn
00141690 l F .text 000000ec endEtherInputHookRtn
001415d0 l F .text 00000060 etherInputHook
00141630 l F .text 00000060 etherOutputHook
0015e5f0 l O .bss 0000000c outputHookList
00141874 l O .text 00000000 $d
00000000 l df *ABS* 00000000 __ctype_tab.c
0015c224 l O .data 00000101 __ctype_tab
00000000 l df *ABS* 00000000 fprintf.c
001418b4 l F .text 00000000 $a
00141918 l O .text 00000000 $d
00000000 l df *ABS* 00000000 stdioLib.c
00141920 l F .text 00000000 $a
0015c32c l O .data 00000004 stdioInitialized
00141a2c l F .text 00000028 stdioStdfpCleanup
00141a54 l F .text 000000c0 stdioInitStd
0015e5fc l O .bss 00000034 fpClass
0015c330 l O .data 00000004 stdioFpCleanupHookDone
00141bcc l O .text 00000000 $d
00000000 l df *ABS* 00000000 vfprintf.c
00141be8 l F .text 00000000 $a
00141d88 l F .text 000000e0 putbuf
00141e68 l O .text 00000000 $d
00000000 l df *ABS* 00000000 atoi.c
00141e78 l F .text 00000000 $a
00000000 l df *ABS* 00000000 rand.c
00141e84 l F .text 00000000 $a
00141eb8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 strtol.c
00141ec8 l F .text 00000000 $a
00142068 l O .text 00000000 $d
00000000 l df *ABS* 00000000 memcpy.c
00142070 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strcat.c
0014208c l F .text 00000000 $a
00000000 l df *ABS* 00000000 strcmp.c
001420b8 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strcpy.c
001420e8 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strlen.c
00142104 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strncmp.c
0014211c l F .text 00000000 $a
00000000 l df *ABS* 00000000 strncpy.c
00142160 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strstr.c
001421a8 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strtok_r.c
00142204 l F .text 00000000 $a
00000000 l df *ABS* 00000000 cacheLib.c
00142278 l F .text 00000000 $a
001426a0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 classLib.c
001426c8 l F .text 00000000 $a
0015e630 l O .bss 00000034 classClass
0014299c l O .text 00000000 $d
00000000 l df *ABS* 00000000 copyright.c
00000000 l df *ABS* 00000000 errnoLib.c
001429c4 l F .text 00000000 $a
00142a64 l O .text 00000000 $d
00000000 l df *ABS* 00000000 excLib.c
00142a68 l F .text 00000000 $a
0015c400 l O .data 00000004 excMsgsLost
0015c404 l O .data 00000004 oldMsgsLost.11
00142c9c l O .text 00000000 $d
00000000 l df *ABS* 00000000 fioLib.c
00142cd8 l F .text 00000000 $a
0015e664 l O .bss 00000004 fioFltFormatRtn
00142df4 l O .text 00000000 $d
00142e04 l F .text 00000000 $a
0015c46c l O .data 00000010 blanks
0015c47c l O .data 00000010 zeroes
00143f14 l F .text 0000002c putbuf
00143f40 l F .text 00000034 printbuf
00143f5c l F .text 00000000 $a
0014406c l F .text 00000024 getbuf
00144090 l F .text 000000ac scanString
0014413c l F .text 00000094 scanChar
00144160 l F .text 00000000 $a
001442b8 l O .text 00000000 $d
001442c0 l F .text 00000000 $a
00144370 l O .text 00000000 $d
00144378 l F .text 00000000 $a
001443ac l F .text 00000238 scanNum
001444a8 l F .text 00000000 $a
001445f4 l O .text 00000000 $d
001445fc l F .text 00000000 $a
001446e0 l O .text 00000000 $d
00144734 l F .text 00000000 $a
0015e668 l O .bss 00000004 fioFltScanRtn
00144d1c l O .text 00000000 $d
00000000 l df *ABS* 00000000 funcBind.c
00000000 l df *ABS* 00000000 hashLib.c
00144d2c l F .text 00000000 $a
0015c5f8 l O .data 00000004 hashLibInstalled
0015e66c l O .bss 00000034 hashClass
00145218 l O .text 00000000 $d
00000000 l df *ABS* 00000000 intLib.c
00145230 l F .text 00000000 $a
00145280 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ioLib.c
00145288 l F .text 00000000 $a
00145678 l F .text 00000248 ioCreateOrOpen
0015e6a0 l O .bss 0000000c ioStdFd
00145bf4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 iosLib.c
00145c14 l F .text 00000000 $a
00145c14 l F .text 00000008 nullWrite
001462d0 l F .text 0000000c iosLock
0015e6ac l O .bss 00000028 iosSemaphore
001462dc l F .text 00000008 iosUnlock
001463d0 l F .text 00000064 iosDevMatch
0015e6d4 l O .bss 00000010 nullDevHdr
00146820 l O .text 00000000 $d
00000000 l df *ABS* 00000000 logLib.c
00146870 l F .text 00000000 $a
0015c630 l O .data 00000004 numLogFds
0015c63c l O .data 00000004 logMsgsLost
0015e6e4 l O .bss 00000028 logFdSem
0015e70c l O .bss 00000014 logFd
0015c634 l O .data 00000004 logMsgQId
00146b30 l F .text 00000090 lprintf
0015c638 l O .data 00000004 oldLogFd.10
0015c640 l O .data 00000004 oldMsgsLost.24
00146d44 l O .text 00000000 $d
00000000 l df *ABS* 00000000 memLib.c
00146dbc l F .text 00000000 $a
0015c704 l O .data 00000004 memLibInstalled
001470b0 l F .text 0000005c memPartBlockError
00147060 l F .text 00000050 memPartAllocError
00147544 l F .text 00000010 memSemInit
0015c708 l O .data 00000004 memMsgBlockTooBig
0015c70c l O .data 00000004 memMsgBlockError
0014710c l F .text 00000094 memBlockSplit
00147554 l O .text 00000000 $d
00000000 l df *ABS* 00000000 memPartLib.c
001475d8 l F .text 00000000 $a
001475d8 l F .text 00000018 memPartDestroy
0015e7d8 l O .bss 00000004 memPartLibInstalled
0015e720 l O .bss 00000050 memSysPartition
00147e28 l F .text 00000148 memAlignedBlockSplit
001482e0 l F .text 00000010 memPartSemInit
0015e770 l O .bss 00000034 memPartClass
0015e7a4 l O .bss 00000034 memPartInstClass
001482f0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 objLib.c
0014837c l F .text 00000000 $a
00148558 l O .text 00000000 $d
00000000 l df *ABS* 00000000 pathLib.c
00148570 l F .text 00000000 $a
00148654 l F .text 00000088 pathArrayReduce
0014886c l F .text 00000060 strcatlim
001489ec l F .text 00000034 pathSlashRindex
00148abc l O .text 00000000 $d
00000000 l df *ABS* 00000000 pipeDrv.c
00148ae0 l F .text 00000000 $a
0015c7cc l O .data 00000004 pipeDrvNum
00148dc0 l F .text 00000038 pipeRead
00148df8 l F .text 00000140 pipeWrite
00148f38 l F .text 00000140 pipeIoctl
00148d54 l F .text 00000044 pipeOpen
00148d98 l F .text 00000028 pipeClose
00149078 l O .text 00000000 $d
00000000 l df *ABS* 00000000 rebootLib.c
001490c0 l F .text 00000000 $a
0015e7e4 l O .bss 00000004 rebootHooksInitialized
0015e7dc l O .bss 00000008 rebootHookList
0014919c l O .text 00000000 $d
00000000 l df *ABS* 00000000 selectLib.c
001491ac l F .text 00000000 $a
00149a0c l F .text 00000084 selTaskDeleteHook
00149200 l F .text 0000008c selDoIoctls
00149870 l F .text 0000007c selTaskCreateHook
00149a90 l F .text 00000060 selTyAdd
00149af0 l F .text 00000008 selTyDelete
00149af8 l F .text 00000060 selPtyAdd
00149b58 l F .text 00000008 selPtyDelete
00149b60 l O .text 00000000 $d
00000000 l df *ABS* 00000000 taskHookLib.c
00149bcc l F .text 00000000 $a
00149d14 l F .text 00000058 taskHookAdd
00149d84 l F .text 00000070 taskHookDelete
00149e18 l F .text 000000a0 taskSwapMaskSet
00149f88 l F .text 000000a0 taskSwapMaskClear
0014a0d4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 ttyDrv.c
0014a10c l F .text 00000000 $a
0015e7e8 l O .bss 00000004 ttyDrvNum
0014a270 l F .text 00000040 ttyOpen
0014a2f4 l F .text 0000006c ttyIoctl
0014a2b0 l F .text 00000044 ttyClose
0014a360 l F .text 00000024 ttyStartup
0014a384 l O .text 00000000 $d
00000000 l df *ABS* 00000000 tyLib.c
0014a3bc l F .text 00000000 $a
0014a424 l F .text 0000006c tyFlushWrt
0015c890 l O .data 00000004 tyAbortFunc
0015c888 l O .data 00000001 tyAbortChar
0015c889 l O .data 00000001 tyMonTrapChar
0015c8a0 l O .data 00000004 tyWrtThreshold
0014a638 l F .text 00000064 tyRdXoff
0015c894 l O .data 00000004 tyXonThreshold
0014a818 l F .text 0000007c tyFlushRd
0014a894 l F .text 00000018 tyFlush
0014a960 l F .text 00000064 tyWrtXoff
0014a9ec l O .text 00000000 $d
0014aa24 l F .text 00000000 $a
0014ac68 l F .text 00000054 tyTxStartup
0015c88c l O .data 00000004 tyXoffChars
0015c898 l O .data 00000004 tyXoffMax
0015c89c l O .data 00000004 tyXoffThreshold
0014b2a4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bootElfLib.c
0014b2d8 l F .text 00000000 $a
0014b2d8 l F .text 00000028 internalRead
0015e7ec l O .bss 00000004 filePosition
0014b300 l F .text 000000a0 internalLseek
0014b3a0 l F .text 00000098 elfHdrRead
0014b438 l F .text 000001bc bootElfModule
0014b608 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bootLoadLib.c
0014b648 l F .text 00000000 $a
0014b680 l O .text 00000000 $d
00000000 l df *ABS* 00000000 bLib.c
0014b688 l F .text 00000000 $a
00000000 l df *ABS* 00000000 bootLib.c
0014b7fc l F .text 00000000 $a
0014b820 l F .text 0000003c addAssignNum
0014b85c l F .text 00000038 addAssignString
0014bb8c l F .text 00000050 printClear
0014bbdc l F .text 00000020 printParamNum
0014bbfc l F .text 00000038 printParamString
0014bc34 l F .text 00000088 promptRead
0014bcbc l F .text 0000007c promptParamString
0014bd38 l F .text 00000030 skipSpace
0014bd68 l F .text 0000005c getNum
0014bdc4 l F .text 000000a0 getConst
0014be64 l F .text 00000074 getWord
0014bed8 l F .text 00000064 getAssign
0014c048 l F .text 000000a8 promptParamNum
0014c0f0 l F .text 00000170 promptParamBootDevice
0015c904 l O .data 0000000c strBootDevice
0014c260 l F .text 0000007c getAssignNum
0015c9be l O .data 0000000c strUnitNum
0015c9ca l O .data 00000011 strProcNum
0015c910 l O .data 0000000a strHostName
0015c92b l O .data 0000000a strFileName
0015c935 l O .data 00000015 strInetOnEthernet
0015c94a l O .data 00000016 strInetOnBackplane
0015c960 l O .data 0000000e strHostInet
0015c96e l O .data 00000011 strGatewayInet
0015c97f l O .data 00000009 strUser
0015c988 l O .data 00000012 strFtpPw
0015c9db l O .data 0000000a strFlags
0015c91a l O .data 00000011 strTargetName
0015c9e5 l O .data 00000013 strStartup
0015c9f8 l O .data 0000000a strOther
0014c774 l O .text 00000000 $d
0014c8e4 l F .text 00000000 $a
0015c99a l O .data 00000024 strFtpPwLong
0014ca6c l F .text 0000006c bootSubfieldExtract
0014cc1c l O .text 00000000 $d
00000000 l df *ABS* 00000000 cksumLib.c
0014cc58 l F .text 00000000 $a
0014ccb8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 dllLib.c
0014ccbc l F .text 00000000 $a
00000000 l df *ABS* 00000000 lstLib.c
0014cd6c l F .text 00000000 $a
00000000 l df *ABS* 00000000 qFifoLib.c
0014d090 l F .text 00000000 $a
0014d1b0 l F .text 00000008 qFifoNullRtn
0015cbbc l O .data 0000003c qFifoClass
00000000 l df *ABS* 00000000 qLib.c
0014d1b8 l F .text 00000000 $a
0014d500 l O .text 00000000 $d
00000000 l df *ABS* 00000000 qPriBMapLib.c
0014d504 l F .text 00000000 $a
0014d790 l F .text 00000008 qPriBMapNullRtn
0015cbfc l O .data 0000003c qPriBMapClass
0014d798 l O .text 00000000 $d
00000000 l df *ABS* 00000000 qPriListLib.c
0014d7a0 l F .text 00000000 $a
0015cc3c l O .data 0000003c qPriListClass
0015cc78 l O .data 0000003c qPriListFromTailClass
0014da0c l O .text 00000000 $d
00000000 l df *ABS* 00000000 rngLib.c
0014da10 l F .text 00000000 $a
00000000 l df *ABS* 00000000 sllLib.c
0014dcfc l F .text 00000000 $a
00000000 l df *ABS* 00000000 fclose.c
0014de34 l F .text 00000000 $a
0014df18 l O .text 00000000 $d
00000000 l df *ABS* 00000000 fflush.c
0014df20 l F .text 00000000 $a
0014e04c l O .text 00000000 $d
00000000 l df *ABS* 00000000 stdio.c
0014e054 l F .text 00000000 $a
00000000 l df *ABS* 00000000 wbuf.c
0014e140 l F .text 00000000 $a
00000000 l df *ABS* 00000000 wsetup.c
0014e210 l F .text 00000000 $a
00000000 l df *ABS* 00000000 abs.c
0014e2cc l F .text 00000000 $a
00000000 l df *ABS* 00000000 memchr.c
0014e2e0 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strncat.c
0014e314 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strpbrk.c
0014e360 l F .text 00000000 $a
00000000 l df *ABS* 00000000 strspn.c
0014e39c l F .text 00000000 $a
00000000 l df *ABS* 00000000 makebuf.c
0014e3d0 l F .text 00000000 $a
00000000 l df *ABS* 00000000 eventLib.c
0014e4f4 l F .text 00000000 $a
0014eb98 l F .text 000000a4 eventPendQRemove
0014ef8c l O .text 00000000 $d
00000000 l df *ABS* 00000000 kernelLib.c
0014f000 l F .text 00000000 $a
0014f17c l O .text 00000000 $d
00000000 l df *ABS* 00000000 msgQLib.c
0014f1ac l F .text 00000000 $a
0015e858 l O .bss 00000004 msgQLibInstalled
0014f50c l F .text 0000046c msgQDestroy
0015e7f0 l O .bss 00000034 msgQClass
0015e824 l O .bss 00000034 msgQInstClass
00150100 l O .text 00000000 $d
00000000 l df *ABS* 00000000 msgQShow.c
001501bc l F .text 00000000 $a
001501f4 l F .text 0000004c msgQInfoEach
001507bc l O .text 00000000 $d
00000000 l df *ABS* 00000000 semBLib.c
00150890 l F .text 00000000 $a
0015e85c l O .bss 00000004 semBLibInstalled
00150c08 l O .text 00000000 $d
00000000 l df *ABS* 00000000 semCLib.c
00150c6c l F .text 00000000 $a
0015e860 l O .bss 00000004 semCLibInstalled
00150fc0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 semLib.c
0015101c l F .text 00000000 $a
0015e864 l O .bss 00000004 semLibInstalled
00151894 l O .text 00000000 $d
00000000 l df *ABS* 00000000 semMLib.c
0015190c l F .text 00000000 $a
0015e868 l O .bss 00000004 semMLibInstalled
00152130 l O .text 00000000 $d
00000000 l df *ABS* 00000000 taskInfo.c
00152198 l F .text 00000000 $a
00152378 l F .text 00000030 taskNameNoMatch
0015e86c l O .bss 00000004 defaultTaskId.27
00152470 l O .text 00000000 $d
00000000 l df *ABS* 00000000 taskLib.c
00152494 l F .text 00000000 $a
0015e8d8 l O .bss 00000004 taskLibInstalled
0015342c l O .text 00000000 $d
00153454 l F .text 00000000 $a
00153524 l O .text 00000000 $d
0015353c l F .text 00000000 $a
00153700 l O .text 00000000 $d
00153708 l F .text 00000000 $a
00153864 l O .text 00000000 $d
00153870 l F .text 00000000 $a
0015399c l O .text 00000000 $d
001539a4 l F .text 00000000 $a
00153b04 l O .text 00000000 $d
00153b10 l F .text 00000000 $a
00153c40 l O .text 00000000 $d
00153c44 l F .text 00000000 $a
00153db4 l O .text 00000000 $d
00153db8 l F .text 00000000 $a
00153ef8 l O .text 00000000 $d
00153f04 l F .text 00000000 $a
00154004 l O .text 00000000 $d
00154008 l F .text 00000000 $a
0015e8dc l O .bss 00000004 nameForNameless
0015d03c l O .data 0000000b digits.8
00154204 l O .text 00000000 $d
0015420c l F .text 00000000 $a
00154420 l O .text 00000000 $d
00154434 l F .text 00000000 $a
0015451c l O .text 00000000 $d
00154538 l F .text 00000000 $a
0015e870 l O .bss 00000034 taskClass
0015e8a4 l O .bss 00000034 taskInstClass
001545f0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 taskShow.c
00154674 l F .text 00000000 $a
0015496c l O .text 00000000 $d
001549a8 l F .text 00000000 $a
00154a80 l F .text 00000124 taskSummary
0015d058 l O .data 000000a2 infoHdr
00154e70 l O .text 00000000 $d
00000000 l df *ABS* 00000000 tickLib.c
00154f18 l F .text 00000000 $a
00155054 l O .text 00000000 $d
00000000 l df *ABS* 00000000 wdLib.c
00155074 l F .text 00000000 $a
0015e948 l O .bss 00000004 wdLibInstalled
0015e8e0 l O .bss 00000034 wdClass
0015e914 l O .bss 00000034 wdInstClass
001557d0 l O .text 00000000 $d
00000000 l df *ABS* 00000000 windLib.c
00155838 l F .text 00000000 $a
001567e8 l O .text 00000000 $d
0015680c l F .text 00000000 $a
00156910 l O .text 00000000 $d
00156918 l F .text 00000000 $a


菜鸟
2005-08-17 04:50:00     打赏
9楼

00156a8c l O .text 00000000 $d
00156a94 l F .text 00000000 $a
00156c38 l O .text 00000000 $d
00156c48 l F .text 00000000 $a
00156dd4 l O .text 00000000 $d
00156de0 l F .text 00000000 $a
00156f28 l O .text 00000000 $d
00156f2c l F .text 00000000 $a
00156f98 l O .text 00000000 $d
00000000 l df *ABS* 00000000 workQLib.c
00157014 l F .text 00000000 $a
0015d32c l O .data 00000004 pWorkQMsg.3
0015709c l O .text 00000000 $d
00000000 l df *ABS* 00000000 eventShow.c
001570b0 l F .text 00000000 $a
001571b8 l O .text 00000000 $d
00000000 l df *ABS* 00000000 msgQEvLib.c
001571f0 l F .text 00000000 $a
0015733c l F .text 00000014 msgQEvIsFree
00157404 l O .text 00000000 $d
00000000 l df *ABS* 00000000 semEvLib.c
00157438 l F .text 00000000 $a
00157590 l F .text 00000014 semEvCIsFree
001575a4 l F .text 00000014 semEvBMIsFree
0015766c l O .text 00000000 $d
00000000 l df *ABS* 00000000 cacheArchVars.c
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21640
001576a0 l F .text 00000000 $a
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21645
00157750 l F .text 00000000 $a
00157750 l F .text 00000000 L$_MsbTblAddr
00157754 l F .text 00000000 L$_LsbTblAddr
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21650
001577ec l F .text 00000000 $a
0015794c l F .text 00000000 dllNotEmpty
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21660
00157960 l F .text 00000000 $a
00157960 l F .text 00000000 L$__func_sigTimeoutRecalc
00157964 l F .text 00000000 L$_intCnt
00157968 l F .text 00000000 L$_kernelState
0015796c l F .text 00000000 L$_semClass
00157970 l F .text 00000000 L$_semGiveTbl
00157974 l F .text 00000000 L$_semTakeTbl
00157978 l F .text 00000000 L$_smObjPoolMinusOne
0015797c l F .text 00000000 L$_taskIdCurrent
00157980 l F .text 00000000 L$_errno
00157984 l F .text 00000000 L$_evtAction
00157988 l F .text 00000000 L$_wvEvtClass
0015798c l F .text 00000000 L$_trgEvtClass
00157990 l F .text 00000000 L$_semInstClass
00157994 l F .text 00000000 L$__func_evtLogM1
00157998 l F .text 00000000 L$__func_trgCheck
0015799c l F .text 00000000 L$_EVENT_SEMGIVE
001579a0 l F .text 00000000 L$_EVENT_SEMTAKE
001579a4 l F .text 00000000 L$_EVENT_OBJ_SEMTAKE
001579a8 l F .text 00000000 L$_TRG_CLASS_2_ON
001579ac l F .text 00000000 L$_TRG_CLASS_3_ON
00157aac l F .text 00000000 semGiveGlobal
00157ac8 l F .text 00000000 instrumentSemGive
001579c8 l F .text 00000000 resumeSemGive
00157ac0 l F .text 00000000 semGiveCallViaTable
00157e94 l F .text 00000000 semIsInvalidUnlock
00157b38 l F .text 00000000 trgSemGiveEvt
00157b7c l F .text 00000000 semGiveTidy
00157c00 l F .text 00000000 semTakeGlobal
00157c1c l F .text 00000000 instrumentSemTake
00157b9c l F .text 00000000 resumeSemTake
00157c14 l F .text 00000000 semTakeNotBinary
00157c88 l F .text 00000000 trgSemTakeEvt
00157d0c l F .text 00000000 instrumentSemQGet
00157cf4 l F .text 00000000 resumeSemQGet
00157d48 l F .text 00000000 trgSemQGetEvt
00157e08 l F .text 00000000 instrumentSemQPut
00157db4 l F .text 00000000 resumeSemQPut
00157df8 l F .text 00000000 semQPutFail
00157e44 l F .text 00000000 trgSemQPutEvt
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21665
00157eac l F .text 00000000 $a
00157eac l F .text 00000000 L$_intCnt
00157eb0 l F .text 00000000 L$_semClass
00157eb4 l F .text 00000000 L$_errno
00157eb8 l F .text 00000000 L$_semInstClass
00157f64 l F .text 00000000 semIsInvalidUnlock
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21670
00157f6c l F .text 00000000 $a
00157f6c l F .text 00000000 L$__func_sigTimeoutRecalc
00157f70 l F .text 00000000 L$_intCnt
00157f74 l F .text 00000000 L$_kernelState
00157f78 l F .text 00000000 L$_semClass
00157f7c l F .text 00000000 L$_semMGiveKernWork
00157f80 l F .text 00000000 L$_taskIdCurrent
00157f84 l F .text 00000000 L$_semInstClass
001580a0 l F .text 00000000 L3_semMGiveInvalid
00157ff0 l F .text 00000000 L3_semMGive
00158028 l F .text 00000000 L0_semMGive
00158048 l F .text 00000000 semMDeleteSafe
00158070 l F .text 00000000 L1_semMGive
00158084 l F .text 00000000 L2_semMGive
001581ac l F .text 00000000 L3_semMTakeInvalid
0015812c l F .text 00000000 L0_semMTake
00158150 l F .text 00000000 L1_semMTake
0015819c l F .text 00000000 L2_semMTake
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21675
001581b8 l F .text 00000000 $a
00000000 l df *ABS* 00000000 taskArchLib.c
0015820c l F .text 00000000 $a
00158294 l O .text 00000000 $d
00000000 l df *ABS* 00000000 /var/tmp/dtmpBAAa21680
00158298 l F .text 00000000 $a
001582bc l F .text 00000000 L$_Even_Byte
001583fc l F .text 00000000 L$_All_Done
00158310 l F .text 00000000 L$_Word_Align
001583f8 l F .text 00000000 L$_Boundary_Done
001583c4 l F .text 00000000 L$_Left_123
00000000 l df *ABS* 00000000 _tmp_wrapper.c
00000000 l df *ABS* 00000000 sxprem32.c
00158438 l F .text 00000000 $a
00158438 l F .text 000000dc rem32
00158574 l O .text 00000000 $d
00000000 l df *ABS* 00000000 _tmp_wrapper.c
00000000 l df *ABS* 00000000 sxpdiv64.c
00158580 l F .text 00000000 $a
00158580 l F .text 0000025c div64
001588ec l O .text 00000000 $d
00000000 l df *ABS* 00000000 _tmp_wrapper.c
00000000 l df *ABS* 00000000 sxprem64.c
001588fc l F .text 00000000 $a
001588fc l F .text 000001dc rem64
00158be4 l O .text 00000000 $d
00000000 l df *ABS* 00000000 _tmp_wrapper.c
00000000 l df *ABS* 00000000 sxpmul64.c
00158bf0 l F .text 00000000 $a
00000000 l df *ABS* 00000000 ffsLib.c
00000000 l df *ABS* 00000000 qJobLib.c
00158cf4 l F .text 00000000 $a
00158fe0 l F .text 000000e8 qJobPendQGet
0015939c l F .text 00000008 qJobNullRtn
0015d8b8 l O .data 0000003c qJobClass
001593a4 l O .text 00000000 $d
0014cd24 g F .text 00000048 dllEach
001103ac g F .text 00000054 mcastHashTblInsert
0015c5fc g O .data 00000004 intCnt
001601e0 g O .bss 00000004 _func_smObjObjShow
001047a0 g F .text 00000048 sysHwInit2
00122fc0 g F .text 000000e8 bsdGetsockopt
0010c5b8 g F .text 0000043c arpresolve
0012a220 g F .text 0000013c muxPollDevDel
0014f230 g F .text 00000170 msgQInit
0012ba90 g F .text 00000084 netTask
00159718 g O .data 00000010 endClDescTbl
00103b5c g F .text 00000048 sysSerialHwInit
00160544 g O .bss 00000044 taskSwitchTable
0015fcb4 g O .bss 00000340 inetsw
0012c3b0 g F .text 00000068 routeCmd
00118774 g F .text 00000068 rt_maskedcopy
00150ce4 g F .text 0000006c semCCoreInit
00142834 g F .text 0000004c classInstConnect
0015840c g F .text 00000000 _insque
00128a0c g F .text 0000013c muxLinkHeaderCreate
001558f8 g F .text 000000cc windSuspend
0015ccb8 g O .data 00000004 qPriListFromTailClassId
001594e8 g O .data 00000010 mClBlkConfig
001601e4 g O .bss 00000004 msgQDistShowRtn
0015190c g F .text 00000054 semMLibInit
001601e8 g O .bss 00000004 _func_evtLogT1_noTS
0014d7b0 g F .text 00000028 qPriListCreate
001420e8 g F .text 0000001c strcpy
00129c30 g F .text 0000007c muxDevStopAll
001576a0 g F .text 00000000 dllInsert
001547e0 g F .text 00000084 taskIdListSort
0015c00c g O .data 00000004 pTcpRandHook
00142cf4 g F .text 00000e38 fioFormatV
00158ad8 g F .text 000000d4 __rem64
00158d84 g F .text 00000014 qJobTerminate
00108308 g F .text 00000004 intVecBaseSet
0015b894 g O .data 00000004 pTcpstates
0015c78c g O .data 00000004 memPartSemInitRtn
0010a7b4 g F .text 000000a8 ifreset
0012be98 g F .text 00000434 rcmd
0015f8c4 g O .bss 00000004 _func_armIrqHandler
0014f3a0 g F .text 0000016c msgQCreate
0012bbe8 g F .text 0000000c remLibInit
0015f978 g O .bss 00000008 mCastHashInfo
00129e20 g F .text 00000104 muxPollTask
0015380c g F .text 00000010 taskDeleteForce
0015c55c g O .data 00000034 cacheLib
001425d8 g F .text 00000034 cacheDrvFlush
0015f960 g O .bss 00000004 ifnet
00154c94 g F .text 000001dc taskShow
001601ec g O .bss 00000004 _func_spyStop
0012bca0 g F .text 00000028 iam
001100e0 g F .text 000000dc in_ifscrub
0010401c g F .text 00000010 sysTimestampFreq
00103e18 g F .text 00000040 sysAuxClkDisable
0014b688 g F .text 0000003c bcmp
001606cc g O .bss 00000001 workQWriteIx
0015b78c g O .data 00000004 rtNewAddrMsgHook
00151960 g F .text 00000050 semMCoreInit
001601f0 g O .bss 00000004 _func_excInfoShow
0013d944 g F .text 000001c0 tcp_attach
00122f0c g F .text 000000b4 bsdSetsockopt
00130508 g F .text 00000088 bpfDevDelete
0014dc9c g F .text 00000020 rngNBytes
0015f990 g O .bss 00000002 ip_id
001571f0 g F .text 00000004 msgQEvLibInit
001453c8 g F .text 00000004 ioctl
00109928 g F .text 00000000 excEnterDataAbort
00145530 g F .text 00000074 writev
00137f8c g F .text 00000144 tcp_pulloutofband
00103d68 g F .text 00000010 sysClkRateGet
0010a1c8 g F .text 0000014c endEtherPacketDataGet
00159988 g O .data 00000004 sysIntLvlEnableRtn
001601f4 g O .bss 00000004 _func_evtLogReserveTaskName
00131570 g F .text 00000168 _bpfProtoDetach
0014d614 g F .text 00000010 qPriBMapDelete
00160330 g O .bss 00000004 drvTable
0015f9a0 g O .bss 00000100 ip_protox
0015c348 g O .data 00000004 cacheMmuAvailable
00142204 g F .text 00000074 strtok_r
0014d0c8 g F .text 00000010 qFifoDelete
00154f18 g F .text 000000bc tickAnnounce
00130c80 g F .text 00000428 bpfIoctl
001249b0 g F .text 00000110 ftpLogin
0014d00c g F .text 0000003c lstFind
001048b8 g F .text 00000010 sysProcNumSet
00132020 g F .text 00000998 bpf_filter
001484bc g F .text 0000006c objFree
001122ec g F .text 00000044 ip_drain
00159f68 g O .data 00000004 mCastHashTblSize
0011d00c g F .text 00000080 soqremque
00103574 g F .text 0000000c sysBusTas
0015fcb0 g O .bss 00000004 zeroin_addr
00143ee8 g F .text 0000002c printf
00143b2c g F .text 00000040 vsprintf
00140cf8 g F .text 000000b0 random
00117ef8 g F .text 00000414 rtfree
001601f8 g O .bss 00000004 _func_trgCheck
00129bc8 g F .text 00000068 muxAddrResFuncDel
0012413c g F .text 000001b0 etherMultiAdd
001450b8 g F .text 00000090 hashTblEach
0015c7d0 g O .data 00000004 mutexOptionsSelectLib
001601fc g O .bss 00000004 pWvNetEventMap
0014ec3c g F .text 00000210 eventRsrcSend
0014a3bc g F .text 00000068 tyDevRemove
00159fdc g O .data 00000004 ip_defttl
00142a68 g F .text 000000a8 excInit
0014e0d4 g F .text 00000034 __sseek
00131450 g F .text 000000c4 _bpfPacketTap
0010e10c g F .text 0000025c arpintr
0014f150 g F .text 00000008 kernelVersion
00100000 g O .text 00000000 wrs_kernel_text_start
00110430 g F .text 0000019c in_delmulti
001606cd g O .bss 00000001 workQReadIx
00129f58 g F .text 0000008c muxTaskPrioritySet
001423b0 g F .text 00000034 cacheInvalidate
00160ae0 g O *ABS* 00000000 _wrs_kernel_bss_end
0014bf3c g F .text 0000010c bootScanNum
00149138 g F .text 00000064 rebootHookAdd
00159b4e g O .data 00000001 ___x_gnu__dvmd_tls_o
0012d1b8 g F .text 00000080 recv
00134768 g F .text 0000010c in_pcballoc
0012ce80 g F .text 00000080 connect
00160340 g O .bss 00000100 ioDefPath
001265e0 g F .text 000000c4 icmpLibInit
0014d890 g F .text 00000010 qPriListRemove
00123aa0 g F .text 00000158 bsdRecvfrom
00143ebc g F .text 0000002c printErr
0015c078 g O .data 00000004 tcpTraceRtn
0013114c g F .text 00000028 bpfWakeup
0012aaa8 g F .text 00000050 muxTkSend
00142b10 g F .text 0000000c excHookAdd
00150908 g F .text 0000008c semBCoreInit
00160200 g O .bss 00000004 _func_taskCreateHookAdd
00155df8 g F .text 0000010c windUndelay
00116f74 g F .text 00000714 rn_delete
0015a270 g O .data 00000004 udp_ttl
0015a27c g O .data 00000002 udp_pcbhashsize
00127998 g F .text 00000058 ifIndexToIfName
00108fa8 g F .text 00000000 reschedule
00159bb0 g O .data 00000014 llinfo_arp
00104520 g F .text 0000000c sysLanIntDisable
0013bfa8 g F .text 00000018 tcpRandHookAdd
0010f5b8 g F .text 000001c0 copyFromMbufs
00142a10 g F .text 00000010 errnoSet
001501bc g F .text 00000038 msgQShowInit
0015b93c g O .data 00000004 tftpTaskPriority
0015c220 g O .data 00000004 __ctype
0012cae8 g F .text 000000bc routeMetricSet
00128004 g F .text 00000068 inet_netof_string
0011611c g F .text 00000040 rn_search
00151e14 g F .text 0000022c semMGiveKern
00159bd8 g O .data 00000004 arpt_keep
00123e94 g F .text 000000ec bsdGetpeername
00160204 g O .bss 00000004 _func_dspRegsListHook
001302d8 g F .text 00000098 bpfDrv
00154218 g F .text 0000008c taskSpawn
00160208 g O .bss 00000004 _func_tmrConnect
0015fc38 g O .bss 00000004 max_protohdr
0014d980 g F .text 00000044 qPriListInfo
0016020c g O .bss 00000004 _func_evtLogTSched
00134714 g F .text 00000054 in_pcbinshash
00131278 g F .text 00000038 bpfSleep
0014d624 g F .text 00000034 qPriBMapResort
0012731c g F .text 00000054 ifMaskGet
00149d6c g F .text 0000000c taskSwitchHookAdd
0014cee0 g F .text 00000038 lstInsert
00133674 g F .text 00000128 igmp_fasttimo
0015d6b0 g O .data 00000001 ___x_diab_sxprem64_o
00131d20 g F .text 00000080 _bpfProtoSend
00103bf4 g F .text 00000020 sysSerialChanGet
0012465c g F .text 0000001c ftpReplyGet
001600ac g O .bss 000000d0 tcpstat
00142348 g F .text 00000034 cacheUnlock
0014da94 g F .text 000000c0 rngBufGet
00160474 g O .bss 00000004 vxIntStackBase
00103564 g F .text 00000008 sysMailboxConnect
00109ba0 g F .text 00000058 tkRcvRtnCall
001079fc g F .text 0000002c excShowInit
0015c468 g O .data 00000004 fieldSzIncludeSign
0013b11c g F .text 00000078 tcp_setpersist
001040e0 g F .text 00000078 sngks32cIntLvlVecChk
001487f0 g F .text 0000007c pathCondense
00160210 g O .bss 00000004 _func_dspTaskRegsShow
00141920 g F .text 00000060 stdioInit
00114c74 g F .text 0000143c ip_output
0015b940 g O .data 00000004 tftpTaskOptions
00158d98 g F .text 0000001c qJobDelete
00122a30 g F .text 00000070 bsdSockLibInit
00152df0 g F .text 000001b8 taskUnsafe
001606d0 g O .bss 00000004 workQIsEmpty
00127d50 g F .text 0000006c inet_makeaddr_b
00144edc g F .text 00000008 hashTblDelete
0015c620 g O .data 00000004 logTaskOptions
0015f96c g O .bss 00000004 arp_allocated
00160214 g O .bss 00000004 trgEvtClass
00128830 g F .text 00000050 muxMCastAddrAdd
00157ea4 g F .text 00000000 semClear
00160218 g O .bss 00000004 _func_selPtyDelete
0015bd08 g O .data 00000004 bpfBufSize
00151a20 g F .text 00000124 semMCreate
001247d8 g F .text 00000050 ftpCommand
00160588 g O .bss 00000044 taskSwapTable
0016021c g O .bss 00000004 _func_evtLogO
0015a38c g O .data 00000004 _panicHook
00145f00 g F .text 00000044 iosOpen
0010d734 g F .text 00000058 ether_sprintf
00150034 g F .text 000000cc msgQNumMsgs
00150d50 g F .text 00000058 semCInit
0012bb14 g F .text 00000090 netJobAdd
0015c784 g O .data 00000004 memPartBlockErrorRtn
00160220 g O .bss 00000004 _func_selWakeupListInit
0010fa90 g F .text 00000094 set_if_addr
00108284 g F .text 0000000c intLockLevelSet
00151428 g F .text 0000016c semFlush
001429c4 g F .text 00000008 __errno
001083bc g F .text 00000018 intRegsUnlock
00107ca0 g F .text 00000000 intUnlock
00153bf0 g F .text 0000048c taskInit
00129104 g F .text 0000007c endFindByName
001034d0 g .text 00000000 sysIntStackSplit
00145ec4 g F .text 0000003c iosDelete
0015fb70 g O .bss 00000004 rttrash
0014cc14 g F .text 00000008 bootBpAnchorExtract
00108168 g F .text 00000020 intEnable
0014ce2c g F .text 00000070 lstExtract
0011965c g F .text 0000004c rt_fixdelete
0014d8a0 g F .text 00000068 qPriListResort
00160540 g O .bss 00000004 semMGiveKernWork
00103f00 g F .text 00000010 sysAuxClkRateGet
0015a274 g O .data 00000004 udp_sendspace
0012fa44 g F .text 00000038 netClFree
00152040 g F .text 000000f0 semMPendQPut
00159548 g O .data 00000004 clDescTblNumEnt
00122bc0 g F .text 0000010c bsdSend
0015109c g F .text 0000029c semDestroy
0014d908 g F .text 00000004 qPriListAdvance
00143f74 g F .text 0000005c fioRead
00159be0 g O .data 00000004 arpRxmitTicks
001081f8 g F .text 0000008c intLibInit
0015bd00 g O .data 00000004 bpfDrvCount
0015c3f8 g O .data 00000004 excTaskOptions
00142cd8 g F .text 00000010 fioLibInit
0014f000 g F .text 00000150 kernelInit
00160224 g O .bss 00000004 trgCnt
001601d0 g O .bss 00000004 errno
00142278 g F .text 00000034 cacheLibInit
001306ec g F .text 0000014c bpfOpen
001340ec g F .text 000001e8 in_pcbnotify
00129594 g F .text 00000204 muxShow
00160228 g O .bss 00000004 _func_ioTaskStdSet
001593e0 g O *ABS* 00000000 _etext
00156380 g F .text 00000138 windPendQFlush
0012fa7c g F .text 00000038 netMblkClFree
001129ac g F .text 00000538 ip_dooptions
0016022c g O .bss 00000004 _func_excIntHook
0012fb28 g F .text 0000003c netClBlkGet
00147814 g F .text 00000088 memPartInit
001462e4 g F .text 000000ec iosFdNew
00124104 g F .text 00000020 bsdShutdown
0011dc64 g F .text 000001c8 sbdrop
00160230 g O .bss 00000004 _func_selPtyAdd
001606bc g O .bss 00000004 kernelState
001162fc g F .text 0000020c rn_match
001593e4 g .data 00000000 sdata
0013fc30 g F .text 000009b8 soreceive
001049dc g F .text 000001d0 sngks32cEndLoad
00160234 g O .bss 00000004 _func_evtLogM1
0013090c g F .text 00000044 bpfSelectDelete
00128550 g F .text 00000050 muxPollReceive

000116554 g F .text 00000110 rn_insert
0014d0fc g F .text 00000018 qFifoGet
0015bfa4 g O .data 00000001 _landAttackSafe
001423e4 g F .text 00000034 cacheClear
0015bd50 g O .data 00000004 bpfProtoInitDone
0014d4a0 g F .text 00000020 qCalibrate
0010bafc g F .text 00000258 if_attach
0012fe24 g F .text 000001d4 netMblkChainDup
001658f0 g O .data 00000000 _gp
00128920 g F .text 000000ec muxUnbind
0015a388 g O .data 00000004 mutexOptionsUnixLib
00127440 g F .text 0000000c ifAddrDelete
0014a490 g F .text 0000000c tyAbortFuncSet
001460f0 g F .text 000000dc iosWrite
00129f3c g F .text 0000001c muxTaskDelayGet
00160238 g O .bss 00000004 _func_sigExcKill
001482b4 g F .text 00000014 memAddToPool
0013643c g F .text 000000d8 icmp_ctloutput
00145de8 g F .text 000000a4 iosFdSet
0016023c g O .bss 00000004 _func_wvNetPortFilterTest
00152328 g F .text 00000050 taskNameToId
0015972c g O .data 00000004 phyPollWdog
00159f02 g O .data 00000006 ether_ipmulticast_min
0014e5b8 g F .text 00000360 eventReceive
0014d4e0 g F .text 00000020 qEach
0014d458 g F .text 00000020 qGetExpired
00103d78 g F .text 00000050 sysClkRateSet
00145c1c g F .text 00000014 iosNextDevGet
0013c65c g F .text 00000238 tcp_close
00147a14 g F .text 00000148 memPartBlockIsValid
00109c28 g F .text 0000001c endFlagsClr
0015c900 g O .data 00000004 bootLoadRoutine
0011c2a8 g F .text 00000068 pfctlinput
0015b7b4 g O .data 00000004 _igmpLeaveGrpHook
0015b898 g O .data 0000002c tcpstates
0014cf34 g F .text 00000008 lstNext
00109240 g F .text 00000000 workQAdd0
00157d98 g F .text 00000000 semQPut
0015d034 g O .data 00000004 restartTaskStackSize
0013441c g F .text 00000024 in_rtchange
0014ce9c g F .text 00000008 lstFirst
00110ca8 g F .text 00000d9c in_control
0014d5c0 g F .text 00000054 qPriBMapCreate
0012ca04 g F .text 00000028 rtrequestDelEqui
00153b28 g F .text 0000005c taskTcb
00147538 g F .text 0000000c memFindMax
00160240 g O .bss 00000004 _func_bdall
00155010 g F .text 00000020 tick64Set
0012cbf0 g F .text 0000008c sockLibAdd
0014dc50 g F .text 00000028 rngIsFull
0015fc54 g O .bss 0000000c hostList
00160478 g O .bss 00000010 tickQHead
0015c881 g O .data 00000001 tyDeleteLineChar
0015be3c g O .data 0000002c inetdomain
00142070 g F .text 0000001c memcpy
0012fc84 g F .text 00000044 netClBlkJoin
0014d168 g F .text 00000048 qFifoEach
00136d0c g F .text 000005dc rip_usrreq
00159ff0 g O .data 00000004 ip_nhops
0010b0f0 g F .text 0000002c if_slowtimoRestart
0015c7a0 g O .data 00000004 smMemPartAllocRtn
001102a4 g F .text 000000b4 in_broadcast
001593e0 g O *ABS* 00000000 _wrs_kernel_text_end
0015c77c g O .data 00000004 memSysPartId
001498ec g F .text 00000120 selectInit
00103df8 g F .text 00000020 sysAuxClkConnect
00103554 g F .text 00000008 sysBusIntAck
00152cd8 g F .text 00000118 taskSafe
00130370 g F .text 00000084 bpfDrvRemove
00148a50 g F .text 0000006c pathSplit
0010afc4 g F .text 00000040 if_qflush
0011d308 g F .text 0000004c socantrcvmore
0015bcc4 g O .data 00000004 _pNetBufCollect
00145b30 g F .text 00000020 ioGlobalStdGet
00157438 g F .text 00000004 semEvLibInit
00148570 g F .text 000000e4 pathParse
0010404c g F .text 0000000c sysTimestampLock
00160244 g O .bss 00000004 _func_symNameGet
00108188 g F .text 00000020 intDisable
0014b714 g F .text 0000003c swab
00104584 g F .text 00000034 sysLedOn
00108b80 g F .text 00000000 vxTaskEntry
001458c0 g F .text 0000000c creat
00107930 g F .text 00000044 excVecSet
001486dc g F .text 00000114 pathBuild
0015d5ac g O .data 00000004 cacheArchState
0016017c g O .bss 00000010 tcbinfo
00160248 g O .bss 00000004 _func_logMsg
0015d5b0 g O .data 00000004 cacheArchIntMask
0014a4a8 g F .text 0000000c tyBackspaceSet
0014b6f0 g F .text 00000024 bswap
00145148 g F .text 0000003c hashFuncIterScale
0015f740 g O .bss 00000010 sngks32cCacheFuncs
0016018c g O .bss 00000004 tcpOutRsts
00109948 g F .text 00000000 excEnterUndef
00145248 g F .text 0000002c intRestrict
00159488 g O .data 00000004 scsiInitialized
001429cc g F .text 0000000c errnoGet
00146f94 g F .text 000000cc memPartFindMax
00127fac g F .text 00000058 inet_ntoa_b
00158274 g F .text 00000020 taskArgsGet
0013e80c g F .text 00000180 soaccept
0014cd04 g F .text 00000020 dllCount
0015c1f8 g O .data 00000004 etherOutputHookRtn
00100358 g F .text 0000000c compressedEntry
0010a0cc g F .text 000000fc endEtherAddressForm
0016024c g O .bss 00000004 _func_tmrFreq
001474d4 g F .text 00000010 memOptionsSet
001424bc g F .text 0000003c cacheDmaFree
0015c618 g O .data 00000004 logTaskId
0015a758 g O .data 00000004 bsdSock43ApiFlag
0014ccfc g F .text 00000008 dllTerminate
0014d3b8 g F .text 00000020 qPut
00136abc g F .text 00000250 rip_output
0014db54 g F .text 000000e4 rngBufPut
00103648 g F .text 00000074 sngks32cIntTx
00155a94 g F .text 00000220 windPrioritySet
0014f978 g F .text 00000008 msgQDelete
0013d0a4 g F .text 0000001c tcp_canceltimers
0015bf6c g O .data 00000004 rip_recvspace
00117c78 g F .text 000000fc route_init
0010ae3c g F .text 000000c4 link_rtrequest
00127404 g F .text 0000000c ifAddrGet
00124fc4 g F .text 00000028 ftpTransientConfigGet
0010402c g F .text 00000020 sysTimestamp
001601d4 g O .bss 00000004 excMsgQId
001482c8 g F .text 0000000c malloc
0014561c g F .text 00000058 remove
0015bfcc g O .data 0000000b tcp_outflags
00145bd4 g F .text 00000020 isatty
001593e0 g O *ABS* 00000000 wrs_kernel_text_end
00135b84 g F .text 000008b8 icmp_input
00160250 g O .bss 00000004 _func_tmrEnable
001272c0 g F .text 0000000c ifFlagSet
00123db8 g F .text 000000dc bsdGetsockname
00127458 g F .text 00000140 ifRouteDelete
0014b648 g F .text 00000038 bootLoadModule
0015a840 g O .data 00000004 ftplPasvModeDisable
001593f8 g O .data 00000004 runtimeVersion
00108bdc g F .text 000000ec vxMemArchProbe
0011451c g F .text 00000528 ip_ctloutput
00159668 g O .data 00000004 sysCpu
0014d1b8 g F .text 000000b4 qInit
001587dc g F .text 000000d8 __div64
001522d4 g F .text 00000030 taskRegsSet
001542a4 g F .text 0000034c taskRestart
00159670 g O .data 00000004 sysExcMsg
0015b5e0 g O .data 00000004 muxMaxBinds
00140f70 g F .text 000000a4 etherOutput
0015cf90 g O .data 00000020 semTakeTbl
0015be84 g O .data 00000004 icmpmaskrepl
0015c608 g O .data 00000004 iosFdNewHookRtn
001451f4 g F .text 00000024 hashKeyStrCmp
0015b7a4 g O .data 00000004 _protoSwIndex
0015fc7c g O .bss 00000004 _igmpQuerierTimeUpdateHook
001429d8 g F .text 00000038 errnoOfTaskGet
0012f548 g F .text 0000004c netPoolKheapInit
00103ba4 g F .text 00000050 sysSerialHwInit2
0012bbf4 g F .text 00000028 remCurIdGet
0014cf18 g F .text 00000014 lstAdd
0015d900 g O *ABS* 00000000 edata
0014f988 g F .text 0000037c msgQSend
0013ed40 g F .text 000000e8 soshutdown
0015622c g F .text 0000007c windReadyQPut
00114a88 g F .text 000001ec ip_mloopback
0012d118 g F .text 000000a0 recvfrom
0013e74c g F .text 000000c0 soabort
0015c3fc g O .data 00000004 excTaskStackSize
0014d7a0 g F .text 00000010 qPriListInit
00158514 g F .text 0000004c __rem32
001233e0 g F .text 00000168 bsdSendto
0014d90c g F .text 00000034 qPriListGetExpired
00154864 g F .text 000000d8 taskRegsShow
0015b5e4 g O .data 00000004 muxBibLock
0010b004 g F .text 000000ec if_down
00152278 g F .text 0000000c taskBpHookSet
00158db4 g F .text 0000022c qJobPut
00126008 g F .text 0000003c hostTblInit
00103f10 g F .text 00000050 sysAuxClkRateSet
0010fe8c g F .text 00000034 inet_netmatch
0014a10c g F .text 00000068 ttyDrv
0015959c g O .data 00000004 sysClDescTblNumEnt
001604c0 g O .bss 00000004 msgQDistNumMsgsRtn
0011e744 g F .text 000005d4 bootpMsgGet
0010fec0 g F .text 000000a4 in_localaddr
001083a8 g F .text 00000014 intRegsLock
00157f88 g F .text 00000000 semMGive
001427cc g F .text 00000068 classShowConnect
0011d3e8 g F .text 0000006c soisdisconnecting
0012ab44 g F .text 00000108 muxTkPollReceive
0015f760 g O .bss 00000004 sysFlags
0012dc4c g F .text 000000ac tftpErrorCreate
001196a8 g F .text 00000370 rtredirect
00107c8c g F .text 00000000 intLock
00146014 g F .text 000000dc iosRead
00103dc8 g F .text 00000030 sysAuxClkInt
00160254 g O .bss 00000004 _func_excPanicHook
001593e4 g .data 00000000 _sdata
00145e8c g F .text 00000038 iosCreate
00160258 g O .bss 00000004 _func_spy
001098a0 g F .text 00000000 armInitExceptionModes
0015d014 g O .data 00000004 taskClassId
00131704 g F .text 00000024 bpfProtoInput
00156648 g F .text 00000070 windPendQRemove
0015b7ac g O .data 00000004 _mCastRouteFwdHook
0014972c g F .text 00000088 selNodeAdd
0012b7a0 g F .text 00000094 muxTkBindUpdate
001557cc g F .text 00000004 wdTick
00107454 g F .text 00000000 bfillBytes
0016025c g O .bss 00000004 _func_remCurIdGet
0014d504 g F .text 00000028 qPriBMapListCreate
00109e54 g F .text 000000c8 endObjInit
0010abd8 g F .text 000000e8 ifaof_ifpforaddr
0014cd84 g F .text 0000006c lstConcat
0012cc7c g F .text 000000a0 socket
0014928c g F .text 000003b0 select
0012b960 g F .text 0000002c netLibGeneralInit
00143fd0 g F .text 0000009c fioRdString
0015faa0 g O .bss 00000004 _func_ipsecFilterHook
0014e3d0 g F .text 00000124 __smakebuf
001288d0 g F .text 00000050 muxMCastAddrGet
00158298 g F .text 00000000 cksum
0014f980 g F .text 00000008 msgQTerminate
0015bdd8 g O .data 00000004 bpfDltTblSize
0013ee28 g F .text 00000210 sofree
0015fc80 g O .bss 00000004 _igmpLeaveAlertHook
0014a4b4 g F .text 0000000c tyDeleteLineSet
0010d688 g F .text 000000ac _arpCmd
0015966c g O .data 00000004 sysBootLine
00148b3c g F .text 000000ec pipeDevCreate
0015e960 g O .bss 00000014 consoleName
00160488 g O .bss 00000004 vxSvcIntStackEnd
0013dbd0 g F .text 00000114 tcp_disconnect
00129320 g F .text 00000274 muxBind
0014cea4 g F .text 0000003c lstGet
00159a50 g O .data 00000004 _func_vxMemProbeHook
0015d028 g O .data 00000004 namelessPrefix
00159708 g O .data 00000010 endMclConfig
0014dfe0 g F .text 0000006c fflush
00159a58 g O .data 00000000 _fpStatus
001281f0 g F .text 000000a4 rawIpLibInit
0014d114 g F .text 00000010 qFifoRemove
00159490 g O .data 00000004 bootCmdTaskOptions
00103cbc g F .text 00000040 sysClkDisable
00159bd4 g O .data 00000004 arpt_prune
0013e98c g F .text 00000058 soconnect2
00157014 g F .text 00000024 workQInit
001605cc g O .bss 00000004 smObjTcbFreeFailRtn
0015a328 g O .data 00000004 sowakeupHook
00103fac g F .text 00000028 sysTimestampEnable
001208c4 g F .text 000001dc bootpParamsGet
00159bdc g O .data 00000004 arpt_down
0014e518 g F .text 000000a0 eventTerminate
001605d0 g O .bss 00000004 taskBpHook
00151348 g F .text 00000070 semGiveDefer
00147f70 g F .text 000002e4 memPartAlignedAlloc
0015fb54 g O .bss 00000004 _func_ipsecOutput
0012bcc8 g F .text 00000028 whoami
0012c660 g F .text 0000002c mRouteEntryAdd
0012cba8 g F .text 00000048 sockLibInit
0012a15c g F .text 000000c4 muxPollEnd
00129af0 g F .text 00000088 muxAddrResFuncAdd
001593e0 g O .data 00000000 wrs_kernel_data_start
0015f964 g O .bss 00000004 _m2IfTableUpdate
0015d6af g O .data 00000001 ___x_diab_sxpdiv64_o
0012d7b8 g F .text 00000090 tftpModeSet
0013f5f4 g F .text 000002f4 sosetopt
0011e3b4 g F .text 00000040 splimp
001381b0 g F .text 000001e4 tcp_mss
0010928c g F .text 00000000 workQAdd1
00123744 g F .text 0000035c bsdRecvmsg
00117e94 g F .text 00000064 routeDrain
001554e8 g F .text 00000008 wdTerminate
0014d3f8 g F .text 00000020 qRemove
00160260 g O .bss 00000004 _func_selTyDelete
00159fe8 g O .data 00000004 ipStrongEnded
0011b7dc g F .text 000003d0 udp_output
001272b4 g F .text 0000000c ifFlagGet
001236ac g F .text 00000084 bsdBind
001316d8 g F .text 0000002c bpfProtoShutdown
001453cc g F .text 000000e8 lseek
001488cc g F .text 00000120 pathCat
00128f9c g F .text 000000e4 muxSend
00142b1c g F .text 0000009c excJobAdd
001074b8 g F .text 00000080 excVecInit
00142880 g F .text 00000074 classMemPartIdSet
0015b784 g O .data 00000004 rtIfaceMsgHook
00160264 g O .bss 00000004 _func_pthread_setcanceltype
0011d0b0 g F .text 00000030 sbseldequeue
00160268 g O .bss 00000004 _func_evtLogT0
0015bddc g O .data 00000004 bpfBsdDevCount
0015faa4 g O .bss 00000004 in_ifaddr
0015fc3c g O .bss 00000004 max_hdr
0016026c g O .bss 00000004 smMemPartShowRtn
00146480 g F .text 00000028 iosDevDelete
00100240 g F .text 000000a8 romStart
00134440 g F .text 0000012c in_pcblookup
0014d660 g F .text 000000b8 qPriBMapInfo
0014ccd0 g F .text 0000001c dllCreate
0014b780 g F .text 00000008 bzero
001046c0 g F .text 0000000c sysModel
00116508 g F .text 0000004c rn_newpair
00160270 g O .bss 00000004 _func_sseTaskRegsShow
0012fd88 g F .text 0000009c netMblkDup
0012d028 g F .text 00000078 send
00155030 g F .text 00000024 tick64Get
001329b8 g F .text 000000ec bpf_validate
00151594 g F .text 00000048 semInvalid
0011c664 g F .text 000000f4 mbinit
0014d7d8 g F .text 00000010 qPriListDelete
0014b894 g F .text 000002f8 bootStructToString
00155cbc g F .text 0000013c windDelay
001564b8 g F .text 00000190 windPendQPut
00104514 g F .text 0000000c sysLanIntEnable
0014fd04 g F .text 00000330 msgQReceive
0014ddc4 g F .text 00000020 sllCount
00141b6c g F .text 0000002c __stderr
0015c882 g O .data 00000001 tyEofChar
0015407c g F .text 0000019c taskCreat
00152198 g F .text 000000bc taskOptionsSet
0013c218 g F .text 00000388 tcp_respond
00145c30 g F .text 00000070 iosFdValue
0014cb48 g F .text 000000cc bootLeaseExtract
00159bc4 g O .data 00000004 arpMaxEntries
0014dd3c g F .text 00000008 sllTerminate
001579e4 g F .text 00000000 semBGive
00121b8c g F .text 00000124 ipDetach
0014e4f4 g F .text 00000010 eventLibInit
0013fb74 g F .text 000000bc uiomove
0015c064 g O .data 00000004 tcp_keepinit
0014692c g F .text 0000005c logFdAdd
00159bcc g O .data 00000004 useloopback
00159990 g O .data 00000004 intDemuxErrorCount
001596c4 g O .data 00000008 sysSioChans
0014ee8c g F .text 00000100 eventStart
00131da0 g F .text 00000054 bpfTkProtoInput
00160274 g O .bss 00000004 _func_tmrStampLock
001605d4 g O .bss 00000044 taskDeleteTable
0012b834 g F .text 0000009c muxTkUnloadUpdate
0014b5f4 g F .text 00000014 bootElfInit
00147934 g F .text 000000e0 memPartCreate
0015fb74 g O .bss 0000006c rt_tables
0015faa8 g O .bss 00000060 ipstat


菜鸟
2005-08-17 04:51:00     打赏
10楼
001594f8 g O .data 00000050 clDescTbl
0010e644 g F .text 000007e0 ether_output
0015824c g F .text 00000020 taskArgsSet
0011e54c g F .text 00000014 _netFree
0015be74 g O .data 00000010 icmpmask
00148254 g F .text 00000060 memPartAlloc
0014acbc g F .text 00000524 tyIRd
00151340 g F .text 00000008 semDelete
0011e488 g F .text 00000004 wakeup
00146a0c g F .text 0000004c logFdSet
0015bfa8 g O .data 00000004 tcprexmtthresh
00157758 g F .text 00000000 ffsMsb
0012cdf4 g F .text 0000008c accept
0010452c g F .text 00000024 sysLedInit
00129da0 g F .text 00000080 muxDevStartAll
0014e504 g F .text 00000014 eventInit
0014dd10 g F .text 0000001c sllCreate
00146660 g F .text 0000010c iosDrvRemove
0015b388 g O .data 00000004 _presolvHostLibGetByName
0015b794 g O .data 00000004 netTaskPriority
0010a85c g F .text 000000ac ifresetImmediate
0015604c g F .text 000000c8 windWdCancel
0015fc84 g O .bss 00000004 _igmpMessageHook
00109ce8 g F .text 000000a4 endMibIfInit
0014d658 g F .text 00000008 qPriBMapKey
001491ac g F .text 00000054 selTaskDeleteHookAdd
00104550 g F .text 00000034 sysLedOff
0015d038 g O .data 00000004 restartTaskOptions
0015711c g F .text 0000009c eventRsrcShow
0014df20 g F .text 000000c0 __sflush
001458d4 g F .text 00000074 rename
0015bfac g O .data 00000004 tcp_last_inpcb
0015240c g F .text 00000064 taskIdListGet
0013cd78 g F .text 00000068 tcp_rtlookup
0012c490 g F .text 00000008 routeAdd
0014d53c g F .text 00000084 qPriBMapInit
0011dfbc g F .text 00000078 soreserve
0015cbf8 g O .data 00000004 qFifoClassId
00159400 g O .data 00000004 creationDate
00124fa0 g F .text 0000000c ftpLibDebugOptionsSet
0014dce0 g F .text 0000001c rngMoveAhead
0012f9ac g F .text 00000040 netClBlkFree
0010ef34 g F .text 0000039c ether_addmulti
001317f8 g F .text 00000344 _bpfProtoAttach
00127844 g F .text 0000011c ifunit
0015826c g F .text 00000008 taskRtnValueSet
00155160 g F .text 00000118 wdCreate
001474e4 g F .text 00000030 calloc
00122d80 g F .text 000000d4 bsdRecv
0015c884 g O .data 00000004 mutexOptionsTyLib
00155074 g F .text 00000090 wdLibInit
0011dfa0 g F .text 0000001c sbrelease
0016027c g O .bss 00000004 _func_evtLogM3
0015fc40 g O .bss 00000004 max_linkhdr
0011e26c g F .text 00000068 sbdroprecord
00131b3c g F .text 00000028 _bpfProtoInit
0015f8cc g O .bss 00000094 loif
0014b7fc g F .text 00000024 bootParamsErrorPrint
0015382c g F .text 000001ac taskDelay
0015e980 g O .bss 00000004 consoleFd
0014a4c0 g F .text 0000000c tyEOFSet
0015c624 g O .data 00000004 logTaskStackSize
00127cec g F .text 00000064 inet_lnaof
00152304 g F .text 00000024 taskName
00109b14 g F .text 0000003c __div32
0014d9c4 g F .text 00000048 qPriListEach
0015b384 g O .data 00000004 hostInitFlag
001464a8 g F .text 00000090 iosDevAdd
0010b4f0 g F .text 000001e0 ifconf
0014b7bc g F .text 00000040 rindex
0013b194 g F .text 00000db8 tcp_output
00127dbc g F .text 00000030 inet_makeaddr
00149d78 g F .text 0000000c taskCreateHookAdd
0015955c g O .data 00000040 sysClDescTbl
00160280 g O .bss 00000004 _func_evtLogPoint
0014985c g F .text 00000004 selWakeupListTerm
0012a6b4 g F .text 000001bc muxTkReceive
001451dc g F .text 00000018 hashKeyCmp
0015b79c g O .data 00000004 netTaskStackSize
00160284 g O .bss 00000004 msgQSmShowRtn
0014dd80 g F .text 00000044 sllPrevious
00145358 g F .text 00000070 write
0015c5f4 g O .data 00000004 hashClassId
0010af00 g F .text 000000c4 if_up
00127dec g F .text 00000084 inet_netof
0015d900 g O *ABS* 00000000 _wrs_kernel_data_end
0016048c g O .bss 00000004 vxSvcIntStackBase
0014cfb4 g F .text 00000058 lstNStep
00107650 g F .text 000001e0 excExcHandle
00160288 g O .bss 00000004 _func_symValueGet
0016028c g O .bss 00000004 _func_spyClkStart
00160290 g O .bss 00000004 _func_excBaseHook
001300f4 g F .text 000000b4 netTupleGet2
0010acc0 g F .text 000000b8 ifa_ifwithroute
00144e64 g F .text 00000070 hashTblDestroy
0013c9cc g F .text 00000264 tcp_notify
00160294 g O .bss 00000004 _func_tmrPeriod
00141564 g F .text 0000006c etherTypeGet
001418b4 g F .text 00000064 fprintf
0013eadc g F .text 000001a8 soconnect
00157b84 g F .text 00000000 semTake
001571f4 g F .text 00000148 msgQEvStart
00109c88 g F .text 00000018 endMultiLstFirst
00118e38 g F .text 00000684 rtrequest
0010b234 g F .text 000000cc ifinit
00109c44 g F .text 0000001c endFlagsSet
00130644 g F .text 00000020 _bpfUnitLock
00129f24 g F .text 00000018 muxTaskDelaySet
0012b018 g F .text 00000434 muxTkBind
0014208c g F .text 0000002c strcat
0010480c g F .text 00000024 sysMemTop
0014c744 g F .text 00000328 bootParamsPrompt
00148c28 g F .text 0000012c pipeDevDelete
001340a8 g F .text 00000044 in_setpeeraddr
0012cd1c g F .text 00000074 bind
0015a75c g O .data 0000004c bsdSockFunc
001471a0 g F .text 00000334 memPartRealloc
00108820 g F .text 000002bc trcStack
0015c344 g O .data 00000004 cacheDataEnabled
0015a84c g O .data 00000004 _func_ftpTransientFatal
0014ccec g F .text 00000010 dllDelete
001187dc g F .text 0000044c rtalloc1
00127b14 g F .text 000001d8 inet_addr
0014cdf0 g F .text 00000008 lstCount
001454b4 g F .text 0000007c readv
0013ec84 g F .text 000000bc sorflush
00143b84 g F .text 0000000c vprintf
00159b9c g O .data 00000014 arpintrq
0012e5fc g F .text 00000100 tftpCopy
0015b938 g O .data 00000004 tftpReXmit
00109c70 g F .text 00000018 endMultiLstCnt
0010725c g F .text 00000000 bcopyLongs
0011d198 g F .text 00000038 sb_lock
00127960 g F .text 00000038 ifNameToIfIndex
0014cfac g F .text 00000008 lstPrevious
0014d7e8 g F .text 00000008 qPriListTerminate
00158bf0 g F .text 00000104 __mul64
001593e0 g O .data 00000000 _wrs_kernel_data_start
001490c0 g F .text 00000078 reboot
00160ae0 g O *ABS* 00000000 end
001459c0 g F .text 00000004 chdir
00130590 g F .text 00000048 _bpfLock
0012b648 g F .text 00000154 muxTkDevLoadUpdate
00110950 g F .text 00000358 in_ifinit
0015ccb4 g O .data 00000004 qPriListClassId
0010a314 g F .text 000000b8 endEtherPacketAddrGet
001594c8 g O .data 0000000c udpCfgParams
00103e58 g F .text 000000a8 sysAuxClkEnable
00157038 g F .text 00000064 workQPanic
00130284 g F .text 00000050 ifIndexTest
001342d4 g F .text 00000148 in_losing
0014f1ac g F .text 00000084 msgQLibInit
00160298 g O .bss 00000004 _func_tmrStamp
00103c14 g F .text 00000020 sysSerialReset
001123e4 g F .text 00000068 ip_stripoptions
0015bcf0 g O .data 00000004 _pNetPoolFuncTbl
0014a8ac g F .text 000000b4 tyDevInit
0012d2b0 g F .text 00000088 setsockopt
0013cc30 g F .text 00000134 tcp_ctlinput
0010a9e0 g F .text 00000078 ifa_ifwithdstaddr
0012f4f4 g F .text 00000008 netBufLibInit
0012f974 g F .text 00000038 netMblkFree
0015c028 g O .data 00000004 tcp_keepintvl
0014676c g F .text 000000b4 iosDrvInstall
0016029c g O .bss 00000004 msgQSmInfoGetRtn
001177c8 g F .text 000000c8 rn_walktree
0013022c g F .text 00000058 ifIndexAlloc
0014a4d8 g F .text 00000160 tyITx
001602a0 g O .bss 00000004 _func_ftpLs
00106fa0 g F .text 00000000 bcopyBytes
0012741c g F .text 0000000c ifDstAddrGet
00129b78 g F .text 00000050 muxAddrResFuncGet
0015f768 g O .bss 000000a0 sysBootFile
00150240 g F .text 000001b4 msgQInfoGet
001601cc g O .bss 00000004 tcp_maxidle
00107d50 g F .text 00000000 intExit
0015820c g F .text 00000040 taskRegsInit
00140bf8 g F .text 00000100 setstate
0012c898 g F .text 000000f4 mRouteDelete
001602a4 g O .bss 00000004 wvInstIsOn
0010fdd8 g F .text 000000b4 in_netof
0014837c g F .text 000000a0 objShow
0014d878 g F .text 00000018 qPriListGet
00146e3c g F .text 000000f8 memPartOptionsSet
0015cf70 g O .data 00000020 semGiveTbl
00149be8 g F .text 00000060 taskSwapHookAdd
0014da3c g F .text 00000058 rngCreate
00145f44 g F .text 000000d0 iosClose
001070fc g F .text 00000000 bcopyWords
0014d048 g F .text 00000048 lstFree
00148a20 g F .text 0000001c pathLastNamePtr
001576cc g F .text 00000000 dllAdd
001604d8 g O .bss 00000034 semClass
001593e0 g O *ABS* 00000000 etext
0014e2e0 g F .text 00000034 memchr
0010aa58 g F .text 0000013c ifa_ifwithnet
0012bc1c g F .text 00000084 remCurIdSet
0010fcf8 g F .text 00000054 netTypeDelete
0016050c g O .bss 00000034 semInstClass
0015a32c g O .data 00000004 sb_max
00160618 g O .bss 00000004 smObjTaskDeleteFailRtn
001523e8 g F .text 00000024 taskIsSuspended
0015d900 g O *ABS* 00000000 wrs_kernel_data_end
0015c700 g O .data 00000004 mutexOptionsMemLib
00141b14 g F .text 0000002c __stdin
0014841c g F .text 00000094 objAllocExtra
0010355c g F .text 00000008 sysBusIntGen
0010ad78 g F .text 000000c4 ifafree
0015bf68 g O .data 00000004 rip_sendspace
001602a8 g O .bss 00000004 _func_evtLogM2
0010356c g F .text 00000008 sysMailboxEnable
0015c60c g O .data 00000004 iosFdFreeHookRtn
0012622c g F .text 00000068 hostGetByName
0015997c g O .data 00000004 sysIntLvlVecChkRtn
00109340 g F .text 00000000 workQDoWork
0014dcfc g F .text 00000014 sllInit
00141980 g F .text 0000008c stdioFpCreate
0015b5e8 g O .data 00000004 muxTkDebug
00146e24 g F .text 00000018 memInit
0012729c g F .text 0000000c ifMetricGet
001606d4 g O .bss 00000400 pJobPool
0015d324 g O .data 00000004 wdClassId
001570b0 g F .text 0000006c eventTaskShow
00160190 g O .bss 00000004 tcp_alpha
0012aaf8 g F .text 0000004c muxTkPollSend
0015fbfc g O .bss 00000028 udpstat
00109cb4 g F .text 00000010 endDevName
0015b92c g O .data 00000004 tftpVerbose
0015c008 g O .data 00000002 tcp_pcbhashsize
00143bc8 g F .text 000002c8 printExc
00133378 g F .text 00000080 igmp_slowtimo
0010b300 g F .text 000001a4 ifpromisc
0015fb58 g O .bss 00000004 mask_rnhead
0011c0e0 g F .text 00000020 addDomain
00109ca0 g F .text 00000014 endMultiLstNext
00103534 g F .text 00000008 sysNvRamGet
001602ac g O .bss 00000004 _func_evtLogT0_noInt
001421a8 g F .text 0000005c strstr
001602b0 g O .bss 00000004 _func_spyReport
0013c9c8 g F .text 00000004 tcp_drain
0011cae4 g F .text 000001c8 m_pullup
001602b4 g O .bss 00000004 msgQDistInfoGetRtn
001211e0 g F .text 00000038 ipTkError
001602b8 g O .bss 00000004 _func_selTyAdd
0015ccf0 g O .data 00000004 msgQInstClassId
0015d6b2 g O .data 00000100 ffsMsbTbl
00141e84 g F .text 00000024 rand
0014dde4 g F .text 00000050 sllEach
0012c300 g F .text 000000b0 routeEntryFill
001272cc g F .text 00000050 ifFlagChange
0015fc88 g O .bss 00000004 _igmpJoinAlertHook
0013e634 g F .text 00000118 solisten
00154fd4 g F .text 0000002c tickSet
00137354 g F .text 00000350 rip_ctloutput
001602bc g O .bss 00000004 _func_fclose
0015e9a0 g O .bss 00000004 sysSymTbl
0013cde0 g F .text 00000100 tcp_updatemtu
001523bc g F .text 0000002c taskIsReady
001452e8 g F .text 00000070 read
00129978 g F .text 000000b8 muxTxRestart
0013cd64 g F .text 00000014 tcp_quench
0015c794 g O .data 00000004 memDefaultAlignment
00124678 g F .text 00000160 ftpCommandEnhanced
00145b80 g F .text 00000054 ioTaskStdGet
0015c780 g O .data 00000004 memPartClassId
00159fc4 g O .data 00000015 inetctlerrmap
00149838 g F .text 00000024 selWakeupListInit
0014cad8 g F .text 00000070 bootNetmaskExtract
0012fd34 g F .text 00000054 netMblkToBufCopy
001606b0 g O .bss 00000008 vxAbsTicks
0012d0a0 g F .text 00000078 sendmsg
0014d960 g F .text 00000020 qPriListKey
0015c338 g O .data 00000004 cacheDmaMallocRtn
001554f8 g F .text 00000190 wdStart
001254e8 g F .text 0000091c ftpXfer
0014211c g F .text 00000044 strncmp
001266a4 g F .text 000000ac ipHeaderCreate
0015f980 g O .bss 00000004 in_interfaces
001593f4 g O .data 00000004 runtimeName
001528ac g F .text 00000004 taskActivate
0014a49c g F .text 0000000c tyAbortSet
001562a8 g F .text 000000d8 windReadyQRemove
00149c48 g F .text 0000006c taskSwapHookDelete
00116664 g F .text 000002e8 rn_addmask
00131174 g F .text 00000104 bpfPacketCatch
0016061c g O .bss 00000004 smObjTcbFreeRtn
001604c4 g O .bss 00000004 msgQSmReceiveRtn
0015f968 g O .bss 00000004 _m2SetIfLastChange
0014a174 g F .text 000000fc ttyDevCreate
001004dc g F .text 00000264 usrRoot
00145b18 g F .text 00000018 ioGlobalStdSet
0011c1f4 g F .text 000000b4 net_sysctl
00126548 g F .text 00000030 sethostname
0014139c g F .text 00000050 etherOutputHookAdd
0015d01c g O .data 00000004 taskPriRangeCheck
001082f8 g F .text 00000010 intUninitVecSet
0015d030 g O .data 00000004 restartTaskPriority
00132c24 g F .text 00000754 igmp_input
0015c000 g O .data 00000004 tcp_rttdflt
0015cf68 g O .data 00000004 semClassId
00131728 g F .text 000000d0 bpfBsdProtoInput
001285a0 g F .text 00000290 muxIoctl
00142160 g F .text 00000048 strncpy
00145674 g F .text 00000004 unlink
00160454 g O .bss 00000004 smMemPartOptionsSetRtn
001081a8 g F .text 00000050 intConnect
0015d018 g O .data 00000004 taskInstClassId
001602c0 g O .bss 00000004 _func_spyClkStop
0013cfa8 g F .text 000000fc tcp_fasttimo
00138394 g F .text 0000020c tcp_dooptions
0012cf88 g F .text 000000a0 sendto
001251c8 g F .text 00000320 ftpDataConnInitPassiveMode
0014b1e0 g F .text 000000c4 tyWrite
0012844c g F .text 000000b4 muxDevStart
0012618c g F .text 000000a0 hostTblSearchByName
001426c8 g F .text 0000005c classInit
001046d4 g F .text 0000000c sysBspRev
00124430 g F .text 0000022c ftpReplyGetEnhanced
00146bc0 g F .text 00000124 logTask
0014da2c g F .text 00000010 rngFlush
0011d454 g F .text 000000dc soisconnected
001475f0 g F .text 00000224 memPartAddToPool
00154674 g F .text 00000038 taskShowInit
0015bcfc g O .data 00000004 bpfDrvNum
001427b4 g F .text 00000018 classDestroy
00150b18 g F .text 000000f0 semBGiveDefer
0015fbe0 g O .bss 00000010 wildcard
00159fe0 g O .data 00000004 proxyBroadcastHook
00147514 g F .text 00000014 realloc
00109bf8 g F .text 0000001c endTxSemTake
00153ba8 g F .text 00000048 taskStackAllot
00109c14 g F .text 00000014 endTxSemGive
00103cfc g F .text 0000006c sysClkEnable
0015b7a0 g O .data 00000004 netLibInitialized
0012b98c g F .text 00000104 netLibInit
0015c61c g O .data 00000004 logTaskPriority
00113d9c g F .text 000000a8 ip_optcopy
001445e4 g F .text 000003d4 scanField
0011e48c g F .text 0000006c panic
00158bac g F .text 00000038 __urem64
00109f3c g F .text 00000190 end8023AddressForm
00109f1c g F .text 00000020 endObjFlagSet
00155278 g F .text 00000270 wdDestroy
00157f10 g F .text 00000000 semCTake
0013bfd0 g F .text 00000188 tcp_init
00103488 g .text 00000000 sysInit
00127a3c g F .text 000000b0 igmpLibInit
00127434 g F .text 0000000c ifBroadcastSet
0015c07c g O .data 00000004 tcpReportRtn
00110680 g F .text 000002d0 in_addmulti
0014cd70 g F .text 00000014 lstInit
0011e4f8 g F .text 00000054 _netMalloc
0013c158 g F .text 000000c0 tcp_template
0014d0d8 g F .text 00000024 qFifoPut
0010e510 g F .text 0000003c _db_show_arptab
0010a3e0 g F .text 00000094 loattach
00106b18 g F .text 00000000 bcopy
0014d3b0 g F .text 00000008 qFirst
001581d0 g F .text 00000000 sllPutAtTail
0014cdf8 g F .text 00000034 lstDelete
0011c844 g F .text 00000090 mHdrClGet
00137b9c g F .text 000003f0 tcp_reass
00126a60 g F .text 0000009c ipHeaderVerify
00159b1c g O .data 00000001 ___x_diab_arm_div_o
001513b8 g F .text 00000070 semFlushDefer
0012b79c g F .text 00000004 muxTkUnbindUpdate
0012cd90 g F .text 00000064 listen
0015c3f4 g O .data 00000004 excTaskPriority
00152ac8 g F .text 000000a8 taskLock
00109b50 g F .text 00000014 __udiv32
0011d530 g F .text 00000054 sbreserve
00151338 g F .text 00000008 semTerminate
0015a2bc g O .data 00000004 _pNetDpool
00133aa0 g F .text 00000544 in_pcbladdr
00109b68 g F .text 00000038 endRcvRtnCall
0015a844 g O .data 00000004 ftplTransientMaxRetryCount
00126044 g F .text 00000148 hostDelete
0015a2c0 g O .data 00000004 _pNetSysPool
001604c8 g O .bss 00000004 msgQDistSendRtn
00146dbc g F .text 00000068 memLibInit
00131df4 g F .text 00000024 bpfTkProtoShutdown
001602c4 g O .bss 00000004 _func_tmrDisable
0011d1d0 g F .text 000000fc sbwakeup
0015c788 g O .data 00000004 memPartAllocErrorRtn
00144ce4 g F .text 00000038 sscanf
0015fb5c g O .bss 00000004 rn_mkfreelist
001594d8 g O .data 00000010 ipCfgParams
0015d900 g O .bss 00000000 wrs_kernel_bss_start
00146a58 g F .text 000000d8 logInit
001380d0 g F .text 000000e0 tcp_xmit_timer
0015b934 g O .data 00000004 tftpTimeout
00159984 g O .data 00000004 sysIntLvlChgRtn
0015954c g O .data 00000010 sysMclBlkConfig
001580a8 g F .text 00000000 semMTake
0015a278 g O .data 00000004 udp_recvspace
0014e314 g F .text 0000004c strncat
0012b5b0 g F .text 00000098 muxTkBibInit
00108290 g F .text 00000008 intLockLevelGet
00150994 g F .text 00000058 semBInit
001599c0 g O .data 00000004 trcDefaultArgs
0011dc0c g F .text 00000058 sbappend
001092e4 g F .text 00000000 workQAdd2
001602c8 g O .bss 00000004 _func_evtLogString
0014d52c g F .text 00000010 qPriBMapListDelete
0012da0c g F .text 00000038 tftpQuit
00104158 g F .text 00000058 sngks32cIntLvlEnable
00107ce4 g F .text 00000000 intVBRSet
0015c340 g O .data 00000004 cacheDataMode
0010f598 g F .text 00000020 bcopy_to_mbufs
0010ee24 g F .text 00000110 ether_ifattach
00142670 g F .text 00000030 cacheDrvPhysToVirt
00160194 g O .bss 00000004 tcp_beta
0011e374 g F .text 00000040 splnet2
00149eb8 g F .text 000000d0 taskSwapHookAttach
0015493c g F .text 00000144 taskStatusString
0014e054 g F .text 00000034 __sread
0015fc48 g O .bss 00000004 splSemId
001301f8 g F .text 00000034 ifIndexLibShutdown
0015fc24 g O .bss 00000004 udb
00129180 g F .text 000001a0 muxDevUnload
00112ee4 g F .text 00000d2c ipintr
001576fc g F .text 00000000 dllRemove
001559c4 g F .text 000000d0 windResume
001526e8 g F .text 000001c4 taskResume
00112008 g F .text 000001e8 ip_init
0010036c g F .text 00000084 usrKernelInit
00152fa8 g F .text 000007ec taskDestroy
00127e70 g F .text 0000013c inet_network
0015b788 g O .data 00000004 rtMissMsgHook
00153ac0 g F .text 00000068 taskIdVerify
0011e334 g F .text 00000040 splnet
00153ab4 g F .text 0000000c taskIdSelf
0015b85c g O .data 00000004 remStdErrSetupTimeout
0010a944 g F .text 0000009c ifa_ifwithaddr
00129798 g F .text 000001c8 muxDevLoad
001312b0 g F .text 0000017c bpfRead
0015b7b0 g O .data 00000004 _igmpJoinGrpHook
0012a620 g F .text 00000094 muxTkCookieGet
001035d4 g F .text 00000040 sngks32cDevInit2
00159344 g F .text 00000058 qJobEach
0012b4b8 g F .text 000000f8 muxTkBibShow
001280a8 g F .text 0000005c inet_aton
0015cc38 g O .data 00000004 qPriBMapClassId
0015f970 g O .bss 00000004 arp_inuse
0012fba0 g F .text 00000044 netMblkClGet
0015c068 g O .data 00000004 tcp_maxpersistidle
0014cd6c g F .text 00000004 lstLibInit
001579b0 g F .text 00000000 semGive
001459b8 g F .text 00000008 ioDefPathGet
0010a908 g F .text 0000003c ifIndexToIfp
001602cc g O .bss 00000004 wvEvtClass
0012d570 g F .text 0000014c tcpLibInit
0014b788 g F .text 00000034 index

共12条 1/2 1 2 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]