This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: libc support


On Wed, Aug 21, 2002 at 05:50:34AM -0700, NavEcos wrote:
> Is there any easy way to get a complete list of all the libc
> functions that are currently supported by eCos?  I was surprised
> to learn qsort() was in there for example, and am curious what else
> is.

Some of these are not libc, but it will give you an idea. Also, my
sledge hammer is not very accurate. Some of the insides for the IP
stack are included etc...

objdump --syms libtarget.a | grep "g     F" | grep -v [cC]yg_ | grep -v hal_ | grep -v diag | grep -v __ > ~/tmp

00000000 g     F .text._linux_entry	0000004e _linux_entry
00000000 g     F .text.falloc	00000035 falloc
00000000 g     F .text.ffree	0000000d ffree
00000000 g     F .text.getfp	0000002e getfp
00000000 g     F .text._memcpy	00000098 _memcpy
00000000 g     F .text._memset	00000092 _memset
00000000 g     F .text.interrupt_end	00000042 interrupt_end
00000000 g     F .text.patch_dbg_syscalls	00000005 patch_dbg_syscalls
00000000 g     F .text.malloc	0000004c malloc
00000000 g     F .text.free	00000022 free
00000000 g     F .text.calloc	00000039 calloc
00000000 g     F .text.realloc	0000008b realloc
00000000 g     F .text.mallinfo	000000eb mallinfo
00000000 g     F .text.isupper	00000016 isupper
00000000 g     F .text.islower	00000016 islower
00000000 g     F .text.isalpha	00000038 isalpha
00000000 g     F .text.isdigit	00000016 isdigit
00000000 g     F .text.isalnum	00000038 isalnum
00000000 g     F .text.iscntrl	00000019 iscntrl
00000000 g     F .text.isgraph	00000016 isgraph
00000000 g     F .text.isprint	00000016 isprint
00000000 g     F .text.ispunct	00000031 ispunct
00000000 g     F .text.isspace	0000002d isspace
00000000 g     F .text.isxdigit	00000038 isxdigit
00000000 g     F .text.tolower	00000023 tolower
00000000 g     F .text.toupper	00000023 toupper
00000000 g     F .text.setlocale	0000037d setlocale
00000000 g     F .text.localeconv	00000043 localeconv
00000000 g     F .text.mblen	00000026 mblen
00000000 g     F .text.mbtowc	00000036 mbtowc
00000000 g     F .text.mbstowcs	0000002b mbstowcs
00000000 g     F .text.wctomb	0000001c wctomb
00000000 g     F .text.wcstombs	0000002a wcstombs
00000000 g     F .text.longjmp	00000022 longjmp
00000000 g     F .text.raise	00000099 raise
00000000 g     F .text.signal	0000005a signal
00000000 g     F .text._exit	00000012 _exit
00000000 g     F .text.abort	00000012 abort
00000000 g     F .text.atexit	00000029 atexit
00000000 g     F .text.exit	00000025 exit
00000000 g     F .text.fclose	0000018c fclose
00000000 g     F .text.feof	00000040 feof
00000000 g     F .text.ferror	00000043 ferror
00000000 g     F .text.clearerr	00000087 clearerr
00000000 g     F .text.fflush	00000079 fflush
00000000 g     F .text.fopen	000000c2 fopen
00000000 g     F .text.fileno	0000000b fileno
00000000 g     F .text.fdopen	00000119 fdopen
00000000 g     F .text.freopen	00000007 freopen
00000000 g     F .text.setvbuf	000000b1 setvbuf
00000000 g     F .text.snprintf	0000001a snprintf
00000000 g     F .text.sprintf	0000001c sprintf
00000000 g     F .text.sscanf	0000001a sscanf
00000000 g     F .text.fgetpos	0000004e fgetpos
00000000 g     F .text.fseek	00000179 fseek
00000000 g     F .text.fsetpos	00000139 fsetpos
00000000 g     F .text.ftell	00000049 ftell
00000000 g     F .text.rewind	0000006d rewind
00000000 g     F .text.setbuf	00000031 setbuf
00000000 g     F .text.vfprintf	0000001b vfprintf
00000000 g     F .text.vprintf	0000001e vprintf
00000000 g     F .text.vsprintf	0000001b vsprintf
00000000 g     F .text.puts	00000030 puts
00000000 g     F .text.perror	0000005c perror
00000000 g     F .text.vscanf	0000001c vscanf
00000000 g     F .text.ungetc	0000009c ungetc
00000000 g     F .text.vsnprintf	000000cf vsnprintf
00000000 g     F .text.vsscanf	000000cf vsscanf
00000000 g     F .text.fgetc	000000bc fgetc
00000000 g     F .text.getchar	00000016 getchar
00000000 g     F .text.fgets	000000eb fgets
00000000 g     F .text.fread	000000e8 fread
00000000 g     F .text.fscanf	0000001a fscanf
00000000 g     F .text.gets	000000eb gets
00000000 g     F .text.scanf	0000001d scanf
00000000 g     F .text.vfscanf	00001482 vfscanf
00000000 g     F .text.fnprintf	0000001a fnprintf
00000000 g     F .text.fprintf	0000001c fprintf
00000000 g     F .text.fputc	0000008c fputc
00000000 g     F .text.putchar	00000019 putchar
00000000 g     F .text.fputs	0000008f fputs
00000000 g     F .text.fwrite	00000098 fwrite
00000000 g     F .text.printf	0000001f printf
00000000 g     F .text.vfnprintf	00000ed0 vfnprintf
00000000 g     F .text.abs	00000012 abs
00000000 g     F .text.labs	00000012 labs
00000000 g     F .text.atof	00000015 atof
00000000 g     F .text.atoi	00000017 atoi
00000000 g     F .text.atol	00000017 atol
00000000 g     F .text.bsearch	00000068 bsearch
00000000 g     F .text.div	00000056 div
00000000 g     F .text.ldiv	00000056 ldiv
00000000 g     F .text.getenv	00000068 getenv
00000000 g     F .text.qsort	000007e8 qsort
00000000 g     F .text.rand	00000015 rand
00000000 g     F .text.rand_r	00000050 rand_r
00000000 g     F .text.srand	0000000d srand
00000000 g     F .text.strtod	000001d8 strtod
00000000 g     F .text.strtol	00000169 strtol
00000000 g     F .text.strtoul	0000015e strtoul
00000000 g     F .text.system	00000007 system
00000000 g     F .text.strtok	0000006d strtok
00000000 g     F .text.strtok_r	0000008b strtok_r
00000000 g     F .text.asctime	0000012b asctime
00000000 g     F .text.asctime_r	000000fd asctime_r
00000000 g     F .text.clock	0000007f clock
00000000 g     F .text.ctime	00000491 ctime
00000000 g     F .text.ctime_r	0000043b ctime_r
00000000 g     F .text.difftime	00000018 difftime
00000000 g     F .text.gmtime	00000317 gmtime
00000000 g     F .text.gmtime_r	000002b7 gmtime_r
00000000 g     F .text.localtime	00000377 localtime
00000000 g     F .text.localtime_r	0000030e localtime_r
00000000 g     F .text.mktime	00000258 mktime
00000000 g     F .text.strftime	0000007b strftime
00000000 g     F .text.time	00000025 time
00000000 g     F .text.acos	0000006c acos
00000000 g     F .text.asin	0000006c asin
00000000 g     F .text.atan2	00000095 atan2
00000000 g     F .text.cosh	0000006b cosh
00000000 g     F .text.exp	00000085 exp
00000000 g     F .text.fmod	00000080 fmod
00000000 g     F .text.log	0000007d log
00000000 g     F .text.log10	00000085 log10
00000000 g     F .text.pow	000001ba pow
00000000 g     F .text.scalb	000000e2 scalb
00000000 g     F .text.sinh	0000006d sinh
00000000 g     F .text.sqrt	00000068 sqrt
00000000 g     F .text.atan	000001d9 atan
00000000 g     F .text.ceil	0000012d ceil
00000000 g     F .text.copysign	0000001e copysign
00000000 g     F .text.cos	000000dd cos
00000000 g     F .text.expm1	000003cf expm1
00000000 g     F .text.fabs	0000000c fabs
00000000 g     F .text.finite	00000015 finite
00000000 g     F .text.floor	00000129 floor
00000000 g     F .text.frexp	0000006f frexp
00000000 g     F .text.isnan	00000025 isnan
00000000 g     F .text.ldexp	000000d9 ldexp
00000000 g     F .text.rint	0000014a rint
00000000 g     F .text.scalbn	000000ff scalbn
00000000 g     F .text.sin	000000dd sin
00000000 g     F .text.tan	00000087 tan
00000000 g     F .text.modf	000000a3 modf
00000000 g     F .text.tanh	000000ec tanh
00000000 g     F .text.cfgetospeed	0000000b cfgetospeed
00000000 g     F .text.cfsetospeed	0000002a cfsetospeed
00000000 g     F .text.cfgetispeed	0000000b cfgetispeed
00000000 g     F .text.cfsetispeed	0000002a cfsetispeed
00000000 g     F .text.tcgetattr	00000083 tcgetattr
00000000 g     F .text.tcsetattr	000000ac tcsetattr
00000000 g     F .text.tcsendbreak	0000000a tcsendbreak
00000000 g     F .text.tcdrain	00000083 tcdrain
00000000 g     F .text.tcflush	000000d3 tcflush
00000000 g     F .text.tcflow	000000f3 tcflow
00000000 g     F .text.mq_open	000003bc mq_open
00000000 g     F .text.mq_close	00000108 mq_close
00000000 g     F .text.mq_unlink	00000098 mq_unlink
00000000 g     F .text.mq_send	00000218 mq_send
00000000 g     F .text.mq_receive	00000188 mq_receive
00000000 g     F .text.mq_notify	00000147 mq_notify
00000000 g     F .text.mq_setattr	00000087 mq_setattr
00000000 g     F .text.mq_getattr	0000005d mq_getattr
00000000 g     F .text.pthread_mutexattr_init	00000027 pthread_mutexattr_init
00000000 g     F .text.pthread_mutexattr_destroy	00000017 pthread_mutexattr_destroy
00000000 g     F .text.pthread_mutexattr_setprotocol	00000027 pthread_mutexattr_setprotocol
00000000 g     F .text.pthread_mutexattr_getprotocol	00000022 pthread_mutexattr_getprotocol
00000000 g     F .text.pthread_mutexattr_setprioceiling	00000022 pthread_mutexattr_setprioceiling
00000000 g     F .text.pthread_mutexattr_getprioceiling	00000022 pthread_mutexattr_getprioceiling
00000000 g     F .text.pthread_mutex_setprioceiling	00000057 pthread_mutex_setprioceiling
00000000 g     F .text.pthread_mutex_lock	0000003d pthread_mutex_lock
00000000 g     F .text.pthread_mutex_unlock	00000027 pthread_mutex_unlock
00000000 g     F .text.pthread_mutex_getprioceiling	00000022 pthread_mutex_getprioceiling
00000000 g     F .text.pthread_mutex_init	00000097 pthread_mutex_init
00000000 g     F .text.pthread_mutex_destroy	00000036 pthread_mutex_destroy
00000000 g     F .text.pthread_mutex_trylock	00000044 pthread_mutex_trylock
00000000 g     F .text.pthread_condattr_init	00000017 pthread_condattr_init
00000000 g     F .text.pthread_condattr_destroy	00000017 pthread_condattr_destroy
00000000 g     F .text.pthread_cond_init	00000027 pthread_cond_init
00000000 g     F .text.pthread_cond_destroy	00000027 pthread_cond_destroy
00000000 g     F .text.pthread_cond_signal	00000027 pthread_cond_signal
00000000 g     F .text.pthread_cond_broadcast	00000027 pthread_cond_broadcast
00000000 g     F .text.pthread_cond_wait	0000003d pthread_cond_wait
00000000 g     F .text.pthread_cond_timedwait	000001c0 pthread_cond_timedwait
00000000 g     F .text.uname	00000072 uname
00000000 g     F .text.sysconf	00000112 sysconf
00000000 g     F .text.getpid	0000000a getpid
00000000 g     F .text.getppid	0000000a getppid
00000000 g     F .text.getuid	0000000a getuid
00000000 g     F .text.geteuid	0000000a geteuid
00000000 g     F .text.getgid	0000000a getgid
00000000 g     F .text.getegid	0000000a getegid
00000000 g     F .text.setuid	00000018 setuid
00000000 g     F .text.setgid	00000018 setgid
00000000 g     F .text.getgroups	00000007 getgroups
00000000 g     F .text.getpgrp	0000000a getpgrp
00000000 g     F .text.setsid	00000018 setsid
00000000 g     F .text.setpgid	00000018 setpgid
00000000 g     F .text.sched_setparam	00000037 sched_setparam
00000000 g     F .text.sched_getparam	00000037 sched_getparam
00000000 g     F .text.sched_setscheduler	00000037 sched_setscheduler
00000000 g     F .text.sched_getscheduler	00000037 sched_getscheduler
00000000 g     F .text.sched_yield	0000001b sched_yield
00000000 g     F .text.sched_get_priority_max	00000028 sched_get_priority_max
00000000 g     F .text.sched_get_priority_min	00000028 sched_get_priority_min
00000000 g     F .text.sched_rr_get_interval	00000032 sched_rr_get_interval
00000000 g     F .text.pthread_self_info	00000015 pthread_self_info
00000000 g     F .text.pthread_info_id	0000002d pthread_info_id
00000000 g     F .text.pthread_exit	00000142 pthread_exit
00000000 g     F .text.pthread_attr_init	00000037 pthread_attr_init
00000000 g     F .text.pthread_attr_setinheritsched	00000034 pthread_attr_setinheritsched
00000000 g     F .text.pthread_attr_setstackaddr	00000022 pthread_attr_setstackaddr
00000000 g     F .text.pthread_attr_setstacksize	00000027 pthread_attr_setstacksize
00000000 g     F .text.pthread_attr_setschedpolicy	00000032 pthread_attr_setschedpolicy
00000000 g     F .text.pthread_attr_setschedparam	00000027 pthread_attr_setschedparam
00000000 g     F .text.pthread_create	000002f8 pthread_create
00000000 g     F .text.pthread_self	00000010 pthread_self
00000000 g     F .text.pthread_equal	00000013 pthread_equal
00000000 g     F .text.pthread_join	00000114 pthread_join
00000000 g     F .text.pthread_testcancel	00000036 pthread_testcancel
00000000 g     F .text.pthread_detach	00000075 pthread_detach
00000000 g     F .text.pthread_attr_destroy	00000017 pthread_attr_destroy
00000000 g     F .text.pthread_attr_setdetachstate	00000032 pthread_attr_setdetachstate
00000000 g     F .text.pthread_attr_getdetachstate	00000024 pthread_attr_getdetachstate
00000000 g     F .text.pthread_attr_setscope	00000042 pthread_attr_setscope
00000000 g     F .text.pthread_attr_getscope	00000028 pthread_attr_getscope
00000000 g     F .text.pthread_attr_getinheritsched	00000028 pthread_attr_getinheritsched
00000000 g     F .text.pthread_attr_getschedpolicy	00000028 pthread_attr_getschedpolicy
00000000 g     F .text.pthread_attr_getschedparam	00000022 pthread_attr_getschedparam
00000000 g     F .text.pthread_attr_getstackaddr	0000002a pthread_attr_getstackaddr
00000000 g     F .text.pthread_attr_getstacksize	00000032 pthread_attr_getstacksize
00000000 g     F .text.pthread_setschedparam	000000c7 pthread_setschedparam
00000000 g     F .text.pthread_getschedparam	00000078 pthread_getschedparam
00000000 g     F .text.pthread_once	00000058 pthread_once
00000000 g     F .text.pthread_key_create	000000cd pthread_key_create
00000000 g     F .text.pthread_key_delete	00000041 pthread_key_delete
00000000 g     F .text.pthread_setspecific	0000007c pthread_setspecific
00000000 g     F .text.pthread_getspecific	00000043 pthread_getspecific
00000000 g     F .text.pthread_setcancelstate	0000006d pthread_setcancelstate
00000000 g     F .text.pthread_setcanceltype	0000006a pthread_setcanceltype
00000000 g     F .text.pthread_cancel	0000008b pthread_cancel
00000000 g     F .text.pthread_cleanup_push_inner	0000002c pthread_cleanup_push_inner
00000000 g     F .text.pthread_cleanup_pop_inner	00000039 pthread_cleanup_pop_inner
00000000 g     F .text.clock_settime	00000057 clock_settime
00000000 g     F .text.clock_gettime	00000047 clock_gettime
00000000 g     F .text.clock_getres	0000003c clock_getres
00000000 g     F .text.timer_create	0000013f timer_create
00000000 g     F .text.timer_delete	0000009c timer_delete
00000000 g     F .text.timer_settime	000001aa timer_settime
00000000 g     F .text.timer_gettime	000000db timer_gettime
00000000 g     F .text.timer_getoverrun	00000057 timer_getoverrun
00000000 g     F .text.nanosleep	000000e0 nanosleep
00000000 g     F .text.sleep	00000032 sleep
00000000 g     F .text.sem_init	00000039 sem_init
00000000 g     F .text.sem_destroy	00000037 sem_destroy
00000000 g     F .text.sem_wait	0000004d sem_wait
00000000 g     F .text.sem_trywait	0000003c sem_trywait
00000000 g     F .text.sem_post	00000015 sem_post
00000000 g     F .text.sem_getvalue	0000001e sem_getvalue
00000000 g     F .text.sem_open	00000015 sem_open
00000000 g     F .text.sem_close	0000001c sem_close
00000000 g     F .text.sem_unlink	0000001c sem_unlink
00000000 g     F .text.sigemptyset	00000010 sigemptyset
00000000 g     F .text.sigaddset	00000046 sigaddset
00000000 g     F .text.kill	0000006b kill
00000000 g     F .text.pthread_kill	00000077 pthread_kill
00000000 g     F .text.sigaction	00000118 sigaction
00000000 g     F .text.sigqueue	00000057 sigqueue
00000000 g     F .text.sigprocmask	00000019 sigprocmask
00000000 g     F .text.pthread_sigmask	00000097 pthread_sigmask
00000000 g     F .text.sigpending	00000037 sigpending
00000000 g     F .text.sigsuspend	0000007c sigsuspend
00000000 g     F .text.sigwait	00000047 sigwait
00000000 g     F .text.sigtimedwait	000001f8 sigtimedwait
00000000 g     F .text.sigwaitinfo	00000018 sigwaitinfo
00000000 g     F .text.alarm	00000110 alarm
00000000 g     F .text.pause	00000062 pause
00000000 g     F .text.sigfillset	00000010 sigfillset
00000000 g     F .text.sigdelset	00000046 sigdelset
00000000 g     F .text.sigismember	0000003e sigismember
00000000 g     F .text.signal	0000004a signal
00000000 g     F .text.raise	00000015 raise
00000000 g     F .text.siglongjmp	00000042 siglongjmp
00000000 g     F .text.cre_tsk	0000014b cre_tsk
00000000 g     F .text.del_tsk	000000ae del_tsk
00000000 g     F .text.sta_tsk	000000bf sta_tsk
00000000 g     F .text.ext_tsk	0000000d ext_tsk
00000000 g     F .text.exd_tsk	00000034 exd_tsk
00000000 g     F .text.ter_tsk	000000f0 ter_tsk
00000000 g     F .text.dis_dsp	00000089 dis_dsp
00000000 g     F .text.ena_dsp	0000009a ena_dsp
00000000 g     F .text.chg_pri	00000107 chg_pri
00000000 g     F .text.rot_rdq	0000003b rot_rdq
00000000 g     F .text.rel_wai	0000009e rel_wai
00000000 g     F .text.get_tid	0000005a get_tid
00000000 g     F .text.ref_tsk	0000017e ref_tsk
00000000 g     F .text.sus_tsk	0000008f sus_tsk
00000000 g     F .text.rsm_tsk	0000008c rsm_tsk
00000000 g     F .text.frsm_tsk	0000008c frsm_tsk
00000000 g     F .text.slp_tsk	0000008c slp_tsk
00000000 g     F .text.tslp_tsk	000000b7 tslp_tsk
00000000 g     F .text.wup_tsk	0000008f wup_tsk
00000000 g     F .text.can_wup	000000de can_wup
00000000 g     F .text.cre_sem	000000eb cre_sem
00000000 g     F .text.del_sem	000000ac del_sem
00000000 g     F .text.sig_sem	0000003f sig_sem
00000000 g     F .text.wai_sem	0000008b wai_sem
00000000 g     F .text.preq_sem	0000004a preq_sem
00000000 g     F .text.twai_sem	00000100 twai_sem
00000000 g     F .text.ref_sem	0000006a ref_sem
00000000 g     F .text.cre_flg	000000eb cre_flg
00000000 g     F .text.del_flg	000000ac del_flg
00000000 g     F .text.set_flg	00000047 set_flg
00000000 g     F .text.clr_flg	00000047 clr_flg
00000000 g     F .text.wai_flg	000000d0 wai_flg
00000000 g     F .text.pol_flg	0000008a pol_flg
00000000 g     F .text.twai_flg	00000137 twai_flg
00000000 g     F .text.ref_flg	00000068 ref_flg
00000000 g     F .text.cre_mbx	000000ef cre_mbx
00000000 g     F .text.del_mbx	000000ac del_mbx
00000000 g     F .text.snd_msg	00000067 snd_msg
00000000 g     F .text.rcv_msg	000000b5 rcv_msg
00000000 g     F .text.prcv_msg	0000006a prcv_msg
00000000 g     F .text.trcv_msg	00000118 trcv_msg
00000000 g     F .text.ref_mbx	00000088 ref_mbx
00000000 g     F .text.loc_cpu	00000089 loc_cpu
00000000 g     F .text.unl_cpu	00000089 unl_cpu
00000000 g     F .text.dis_int	00000057 dis_int
00000000 g     F .text.ena_int	00000057 ena_int
00000000 g     F .text.cre_mpl	00000160 cre_mpl
00000000 g     F .text.del_mpl	000000ac del_mpl
00000000 g     F .text.get_blk	000000c0 get_blk
00000000 g     F .text.pget_blk	0000007a pget_blk
00000000 g     F .text.tget_blk	0000011f tget_blk
00000000 g     F .text.rel_blk	00000057 rel_blk
00000000 g     F .text.ref_mpl	000000c2 ref_mpl
00000000 g     F .text.cre_mpf	0000016b cre_mpf
00000000 g     F .text.del_mpf	000000ac del_mpf
00000000 g     F .text.get_blf	000000b0 get_blf
00000000 g     F .text.pget_blf	0000006a pget_blf
00000000 g     F .text.tget_blf	00000115 tget_blf
00000000 g     F .text.rel_blf	00000057 rel_blf
00000000 g     F .text.ref_mpf	000000dd ref_mpf
00000000 g     F .text.set_tim	0000002b set_tim
00000000 g     F .text.get_tim	0000002a get_tim
00000000 g     F .text.dly_tsk	0000008a dly_tsk
00000000 g     F .text.def_cyc	00000091 def_cyc
00000000 g     F .text.act_cyc	0000004e act_cyc
00000000 g     F .text.ref_cyc	000000be ref_cyc
00000000 g     F .text.def_alm	000000be def_alm
00000000 g     F .text.ref_alm	000000ad ref_alm
00000000 g     F .text.get_ver	00000057 get_ver
00000000 g     F .text.ref_sys	0000003d ref_sys
00000000 g     F .text.ref_cfg	0000001a ref_cfg
00000000 g     F .text.iwup_tsk	000000ed iwup_tsk
00000000 g     F .text.isig_sem	0000007d isig_sem
00000000 g     F .text.iset_flg	00000091 iset_flg
00000000 g     F .text.isnd_msg	000000b5 isnd_msg
00000000 g     F .text.dup	00000077 dup
00000000 g     F .text.dup2	0000005b dup2
00000000 g     F .text.open	000001a8 open
00000000 g     F .text.creat	00000018 creat
00000000 g     F .text.unlink	000000c7 unlink
00000000 g     F .text.mkdir	000000c7 mkdir
00000000 g     F .text.rmdir	000000c7 rmdir
00000000 g     F .text.rename	00000119 rename
00000000 g     F .text.link	00000119 link
00000000 g     F .text.chdir	0000014e chdir
00000000 g     F .text.stat	000000c7 stat
00000000 g     F .text.pathconf	000000df pathconf
00000000 g     F .text.access	0000006f access
00000000 g     F .text.getcwd	000000cf getcwd
00000000 g     F .text.read	00000018 read
00000000 g     F .text.write	00000018 write
00000000 g     F .text.close	0000007c close
00000000 g     F .text.lseek	000000a7 lseek
00000000 g     F .text.ioctl	0000009b ioctl
00000000 g     F .text.fsync	0000009c fsync
00000000 g     F .text.fdatasync	0000009c fdatasync
00000000 g     F .text.fstat	00000099 fstat
00000000 g     F .text.fpathconf	000000b0 fpathconf
00000000 g     F .text.fcntl	000000bd fcntl
00000000 g     F .text.isatty	00000049 isatty
00000000 g     F .text.opendir	0000015a opendir
00000000 g     F .text.readdir	00000047 readdir
00000000 g     F .text.readdir_r	00000058 readdir_r
00000000 g     F .text.rewinddir	00000029 rewinddir
00000000 g     F .text.closedir	00000029 closedir
00000000 g     F .text.select	00000471 select
00000000 g     F .text.socket	00000119 socket
00000000 g     F .text.accept	00000178 accept
00000000 g     F .text.bind	0000009f bind
00000000 g     F .text.connect	000000a0 connect
00000000 g     F .text.getpeername	0000009f getpeername
00000000 g     F .text.getsockname	0000009f getsockname
00000000 g     F .text.getsockopt	000000aa getsockopt
00000000 g     F .text.listen	0000009d listen
00000000 g     F .text.recvmsg	000000b8 recvmsg
00000000 g     F .text.recvfrom	00000100 recvfrom
00000000 g     F .text.recv	00000020 recv
00000000 g     F .text.sendmsg	000000b0 sendmsg
00000000 g     F .text.sendto	000000e8 sendto
00000000 g     F .text.send	00000020 send
00000000 g     F .text.setsockopt	000000aa setsockopt
00000000 g     F .text.shutdown	0000009d shutdown
00000000 g     F .text.inet_addr	00000025 inet_addr
00000000 g     F .text.inet_aton	0000022e inet_aton
00000000 g     F .text.inet_ntoa	00000033 inet_ntoa
00000000 g     F .text.inet_ntop	00000033 inet_ntop
00000000 g     F .text._inet_ntop	00000033 _inet_ntop
00000000 g     F .text._inet_port	0000001f _inet_port
00000000 g     F .text.inet_pton	00000030 inet_pton
00000000 g     F .text.do_bootp	0000058a do_bootp
00000000 g     F .text.show_bootp	0000051e show_bootp
00000000 g     F .text.get_bootp_option	0000013f get_bootp_option
00000000 g     F .text.init_net	000003e9 init_net
00000000 g     F .text.init_loopback_interface	00000371 init_loopback_interface
00000000 g     F .text.build_bootp_record	00000195 build_bootp_record
00000000 g     F .text.init_all_network_interfaces	00000075 init_all_network_interfaces
00000000 g     F .text.getprotobyname	00000052 getprotobyname
00000000 g     F .text.getprotobynumber	00000033 getprotobynumber
00000000 g     F .text.getservbyname	0000006d getservbyname
00000000 g     F .text.getservbyport	00000064 getservbyport
00000000 g     F .text.getaddrinfo	000002b7 getaddrinfo
00000000 g     F .text.freeaddrinfo	00000052 freeaddrinfo
00000000 g     F .text.gai_strerror	0000007e gai_strerror
00000000 g     F .text.getnameinfo	000000e1 getnameinfo
00000000 g     F .text.getifaddrs	000002b5 getifaddrs
00000000 g     F .text.freeifaddrs	00000013 freeifaddrs
00000000 g     F .text._show_all_interfaces	00000128 _show_all_interfaces
00000000 g     F .text.if_nametoindex	00000084 if_nametoindex
00000000 g     F .text.if_indextoname	00000085 if_indextoname
00000000 g     F .text.tftp_get	00000461 tftp_get
00000000 g     F .text.tftp_put	0000057c tftp_put
00000000 g     F .text.tftpd_start	00000099 tftpd_start
00000000 g     F .text.tftpd_stop	0000006c tftpd_stop
00000000 g     F .text.net_memcpy	00000019 net_memcpy
00000000 g     F .text.net_memset	00000019 net_memset
00000000 g     F .text.get_random_bytes	00000025 get_random_bytes
00000000 g     F .text.microtime	00000015 microtime
00000000 g     F .text.get_mono_time	00000015 get_mono_time
00000000 g     F .text.csignal	00000015 csignal
00000000 g     F .text.bcmp	0000002b bcmp
00000000 g     F .text.copyout	0000001b copyout
00000000 g     F .text.copyin	0000001b copyin
00000000 g     F .text.ovbcopy	00000019 ovbcopy
00000000 g     F .text.setsoftnet	00000005 setsoftnet
00000000 g     F .text.ecos_synch_eth_drv_dsr	00000017 ecos_synch_eth_drv_dsr
00000000 g     F .text.timeout	000000d6 timeout
00000000 g     F .text.untimeout	0000006d untimeout
00000000 g     F .text.mbinit	00000042 mbinit
00000000 g     F .text.m_clalloc	00000078 m_clalloc
00000000 g     F .text.m_reclaim	0000005f m_reclaim
00000000 g     F .text.m_retry	00000080 m_retry
00000000 g     F .text.m_retryhdr	00000080 m_retryhdr
00000000 g     F .text.m_get	00000076 m_get
00000000 g     F .text.m_gethdr	00000076 m_gethdr
00000000 g     F .text.m_getclr	0000008e m_getclr
00000000 g     F .text.m_free	000000b0 m_free
00000000 g     F .text.m_freem	000000c3 m_freem
00000000 g     F .text.m_prepend	000000e8 m_prepend
00000000 g     F .text.m_copym	0000026b m_copym
00000000 g     F .text.m_copym2	00000290 m_copym2
00000000 g     F .text.m_copydata	000000b3 m_copydata
00000000 g     F .text.m_cat	0000006d m_cat
00000000 g     F .text.m_adj	000000b8 m_adj
00000000 g     F .text.m_pullup	000001ab m_pullup
00000000 g     F .text.m_pullup2	00000235 m_pullup2
00000000 g     F .text.m_inject	00000185 m_inject
00000000 g     F .text.m_split	0000029d m_split
00000000 g     F .text.m_devget	00000285 m_devget
00000000 g     F .text.m_zero	00000074 m_zero
00000000 g     F .text.m_apply	000000b6 m_apply
00000000 g     F .text.domaininit	000000b2 domaininit
00000000 g     F .text.pffasttimo	00000068 pffasttimo
00000000 g     F .text.pfslowtimo	00000060 pfslowtimo
00000000 g     F .text.pffindtype	00000049 pffindtype
00000000 g     F .text.pffindproto	00000075 pffindproto
00000000 g     F .text.pfctlinput	0000004d pfctlinput
00000000 g     F .text.socreate	000000d7 socreate
00000000 g     F .text.sofree	00000056 sofree
00000000 g     F .text.sobind	00000041 sobind
00000000 g     F .text.solisten	00000082 solisten
00000000 g     F .text.sorflush	0000009f sorflush
00000000 g     F .text.soclose	00000127 soclose
00000000 g     F .text.soabort	0000001f soabort
00000000 g     F .text.sodisconnect	0000005b sodisconnect
00000000 g     F .text.soaccept	0000006a soaccept
00000000 g     F .text.soconnect	0000007d soconnect
00000000 g     F .text.soconnect2	00000041 soconnect2
00000000 g     F .text.sosend	000005f4 sosend
00000000 g     F .text.soreceive	0000096e soreceive
00000000 g     F .text.soshutdown	00000059 soshutdown
00000000 g     F .text.sosetopt	00000269 sosetopt
00000000 g     F .text.sogetopt	0000022f sogetopt
00000000 g     F .text.sohasoutofband	00000017 sohasoutofband
00000000 g     F .text.soisconnecting	00000014 soisconnecting
00000000 g     F .text.soisconnected	000000cb soisconnected
00000000 g     F .text.soqremque	00000068 soqremque
00000000 g     F .text.soqinsque	0000004f soqinsque
00000000 g     F .text.sowakeup	0000003e sowakeup
00000000 g     F .text.soisdisconnecting	0000005f soisdisconnecting
00000000 g     F .text.soisdisconnected	00000062 soisdisconnected
00000000 g     F .text.sonewconn1	0000014e sonewconn1
00000000 g     F .text.soreserve	00000075 soreserve
00000000 g     F .text.socantsendmore	0000001c socantsendmore
00000000 g     F .text.socantrcvmore	0000003b socantrcvmore
00000000 g     F .text.sbwait	00000021 sbwait
00000000 g     F .text.sb_lock	00000042 sb_lock
00000000 g     F .text.sblock	00000054 sblock
00000000 g     F .text.sbunlock	0000003f sbunlock
00000000 g     F .text.sbreserve	00000052 sbreserve
00000000 g     F .text.sbrelease	00000026 sbrelease
00000000 g     F .text.sbflush	00000051 sbflush
00000000 g     F .text.sbappend	00000060 sbappend
00000000 g     F .text.sbappendrecord	00000085 sbappendrecord
00000000 g     F .text.sbcompress	00000125 sbcompress
00000000 g     F .text.sbinsertoob	00000098 sbinsertoob
00000000 g     F .text.sbappendaddr	00000170 sbappendaddr
00000000 g     F .text.sbappendcontrol	000000e0 sbappendcontrol
00000000 g     F .text.sbdrop	00000231 sbdrop
00000000 g     F .text.sbdroprecord	000000ef sbdroprecord
00000000 g     F .text.sbcreatecontrol	00000124 sbcreatecontrol
00000000 g     F .text.uiomove	000000d0 uiomove
00000000 g     F .text.hashinit	0000006f hashinit
00000000 g     F .text.ifinit	00000037 ifinit
00000000 g     F .text.if_slowtimo	00000075 if_slowtimo
00000000 g     F .text.if_attachsetup	00000241 if_attachsetup
00000000 g     F .text.link_rtrequest	00000081 link_rtrequest
00000000 g     F .text.if_attachhead	0000006f if_attachhead
00000000 g     F .text.if_attach	00000076 if_attach
00000000 g     F .text.if_detach_rtdelete	0000002c if_detach_rtdelete
00000000 g     F .text.if_detach	000000e9 if_detach
00000000 g     F .text.ifa_ifwithaddr	00000088 ifa_ifwithaddr
00000000 g     F .text.ifa_ifwithdstaddr	00000068 ifa_ifwithdstaddr
00000000 g     F .text.ifa_ifwithnet	000000db ifa_ifwithnet
00000000 g     F .text.ifa_ifwithaf	00000039 ifa_ifwithaf
00000000 g     F .text.ifaof_ifpforaddr	000000f1 ifaof_ifpforaddr
00000000 g     F .text.if_down	0000004b if_down
00000000 g     F .text.if_qflush	00000040 if_qflush
00000000 g     F .text.if_up	00000018 if_up
00000000 g     F .text.ifunit	00000040 ifunit
00000000 g     F .text.if_withname	0000004d if_withname
00000000 g     F .text.ifioctl	00000214 ifioctl
00000000 g     F .text.ifconf	000001df ifconf
00000000 g     F .text.route_usrreq	0000015e route_usrreq
00000000 g     F .text.route_output	0000055e route_output
00000000 g     F .text.rt_setmetrics	00000067 rt_setmetrics
00000000 g     F .text.m_copyback	000000fb m_copyback
00000000 g     F .text.rt_missmsg	00000079 rt_missmsg
00000000 g     F .text.rt_ifmsg	00000084 rt_ifmsg
00000000 g     F .text.rt_newaddrmsg	00000183 rt_newaddrmsg
00000000 g     F .text.raw_attach	0000007a raw_attach
00000000 g     F .text.raw_detach	00000047 raw_detach
00000000 g     F .text.raw_disconnect	0000001d raw_disconnect
00000000 g     F .text.raw_init	0000000f raw_init
00000000 g     F .text.raw_input	0000019b raw_input
00000000 g     F .text.raw_ctlinput	00000007 raw_ctlinput
00000000 g     F .text.raw_usrreq	000001c2 raw_usrreq
00000000 g     F .text.rtable_init	0000003d rtable_init
00000000 g     F .text.route_init	0000001a route_init
00000000 g     F .text.rtrequest	00000330 rtrequest
00000000 g     F .text.rtalloc_noclone	00000034 rtalloc_noclone
00000000 g     F .text.rtalloc2	00000104 rtalloc2
00000000 g     F .text.rtalloc	00000031 rtalloc
00000000 g     F .text.rtalloc1	000000f0 rtalloc1
00000000 g     F .text.rtfree	000000b9 rtfree
00000000 g     F .text.rt_timer_remove_all	00000063 rt_timer_remove_all
00000000 g     F .text.ifafree	0000003b ifafree
00000000 g     F .text.rtredirect	0000018b rtredirect
00000000 g     F .text.rt_setgate	00000144 rt_setgate
00000000 g     F .text.rtioctl	00000067 rtioctl
00000000 g     F .text.ifa_ifwithroute	000000cb ifa_ifwithroute
00000000 g     F .text._rt_cmd	0000003e _rt_cmd
00000000 g     F .text.rt_maskedcopy	0000005a rt_maskedcopy
00000000 g     F .text.ipv4_tunnelsetup	00000005 ipv4_tunnelsetup
00000000 g     F .text.rtinit	000001e6 rtinit
00000000 g     F .text.rt_timer_init	00000031 rt_timer_init
00000000 g     F .text.rt_timer_timer	000000fd rt_timer_timer
00000000 g     F .text.rt_timer_queue_create	00000070 rt_timer_queue_create
00000000 g     F .text.rt_timer_queue_change	0000000d rt_timer_queue_change
00000000 g     F .text.rt_timer_queue_destroy	000000b0 rt_timer_queue_destroy
00000000 g     F .text.rt_timer_add	0000010a rt_timer_add
00000000 g     F .text.rn_search	00000035 rn_search
00000000 g     F .text.rn_search_m	0000003c rn_search_m
00000000 g     F .text.rn_refines	00000093 rn_refines
00000000 g     F .text.rn_lookup	00000063 rn_lookup
00000000 g     F .text.rn_addmask	00000245 rn_addmask
00000000 g     F .text.rn_match	0000018a rn_match
00000000 g     F .text.rn_newpair	00000049 rn_newpair
00000000 g     F .text.rn_insert	00000104 rn_insert
00000000 g     F .text.rn_addroute	000002c5 rn_addroute
00000000 g     F .text.rn_delete	0000034c rn_delete
00000000 g     F .text.rn_walktree	00000083 rn_walktree
00000000 g     F .text.rn_inithead	000000ca rn_inithead
00000000 g     F .text.rn_init	000000cd rn_init
00000000 g     F .text.ether_ioctl	00000007 ether_ioctl
00000000 g     F .text.ether_output	0000045c ether_output
00000000 g     F .text.ether_input	00000257 ether_input
00000000 g     F .text.ether_sprintf	0000004b ether_sprintf
00000000 g     F .text.ether_ifattach	00000079 ether_ifattach
00000000 g     F .text.ether_ifdetach	00000045 ether_ifdetach
00000000 g     F .text.ether_addmulti	00000202 ether_addmulti
00000000 g     F .text.ether_delmulti	00000182 ether_delmulti
00000000 g     F .text.loopattach	0000006f loopattach
00000000 g     F .text.loioctl	00000059 loioctl
00000000 g     F .text.looutput	000002d7 looutput
00000000 g     F .text.lortrequest	00000013 lortrequest
00000000 g     F .text.igmp_init	00000019 igmp_init
00000000 g     F .text.rti_delete	00000036 rti_delete
00000000 g     F .text.igmp_input	000004e5 igmp_input
00000000 g     F .text.igmp_joingroup	00000098 igmp_joingroup
00000000 g     F .text.igmp_sendpkt	0000011c igmp_sendpkt
00000000 g     F .text.igmp_leavegroup	00000043 igmp_leavegroup
00000000 g     F .text.igmp_fasttimo	000000c0 igmp_fasttimo
00000000 g     F .text.igmp_slowtimo	0000004c igmp_slowtimo
00000000 g     F .text.rip_init	00000017 rip_init
00000000 g     F .text.rip_input	000001a1 rip_input
00000000 g     F .text.rip_output	0000016c rip_output
00000000 g     F .text.rip_ctloutput	00000105 rip_ctloutput
00000000 g     F .text.rip_usrreq	0000023d rip_usrreq
00000000 g     F .text.in_localaddr	00000065 in_localaddr
00000000 g     F .text.in_canforward	00000039 in_canforward
00000000 g     F .text.in_socktrim	00000022 in_socktrim
00000000 g     F .text.in_control	0000060a in_control
00000000 g     F .text.in_ifinit	000001bf in_ifinit
00000000 g     F .text.in_ifscrub	0000003e in_ifscrub
00000000 g     F .text.in_addmulti	00000145 in_addmulti
00000000 g     F .text.in_broadcast	000000b5 in_broadcast
00000000 g     F .text.in_delmulti	00000087 in_delmulti
00000000 g     F .text.in_cksum	00000236 in_cksum
00000000 g     F .text.in_pcbinit	0000002d in_pcbinit
00000000 g     F .text.in_baddynamic	0000006c in_baddynamic
00000000 g     F .text.in_pcballoc	000001ae in_pcballoc
00000000 g     F .text.in_pcbbind	00000381 in_pcbbind
00000000 g     F .text.in_pcblookup	000000ae in_pcblookup
00000000 g     F .text.in_pcbrehash	0000013c in_pcbrehash
00000000 g     F .text.in_pcbconnect	0000012e in_pcbconnect
00000000 g     F .text.in_selectsrc	0000013b in_selectsrc
00000000 g     F .text.in_pcbhashlookup	000000bd in_pcbhashlookup
00000000 g     F .text.in_pcbdisconnect	0000003a in_pcbdisconnect
00000000 g     F .text.in_pcbdetach	000000bf in_pcbdetach
00000000 g     F .text.in_setsockaddr	0000003f in_setsockaddr
00000000 g     F .text.in_setpeeraddr	0000003f in_setpeeraddr
00000000 g     F .text.in_pcbnotify	00000083 in_pcbnotify
00000000 g     F .text.in_pcbnotifyall	00000058 in_pcbnotifyall
00000000 g     F .text.in_losing	00000081 in_losing
00000000 g     F .text.in_rtchange	00000026 in_rtchange
00000000 g     F .text.ip_randomid	000000f8 ip_randomid
00000000 g     F .text.icmp_error	00000260 icmp_error
00000000 g     F .text.icmp_reflect	00000220 icmp_reflect
00000000 g     F .text.icmp_input	00000331 icmp_input
00000000 g     F .text.iptime	0000006f iptime
00000000 g     F .text.icmp_send	0000005f icmp_send
00000000 g     F .text.ip_init	000001ae ip_init
00000000 g     F .text.ipintr	00000075 ipintr
00000000 g     F .text.ipv4_input	00000443 ipv4_input
00000000 g     F .text.ip_dooptions	0000040d ip_dooptions
00000000 g     F .text.in_iawithaddr	0000007e in_iawithaddr
00000000 g     F .text.ip_forward	0000028c ip_forward
00000000 g     F .text.ip_flush	0000004e ip_flush
00000000 g     F .text.ip_reass	000003ee ip_reass
00000000 g     F .text.ip_freef	0000007b ip_freef
00000000 g     F .text.ip_slowtimo	00000093 ip_slowtimo
00000000 g     F .text.ip_drain	0000008a ip_drain
00000000 g     F .text.ip_rtaddr	00000079 ip_rtaddr
00000000 g     F .text.ip_srcroute	000000a4 ip_srcroute
00000000 g     F .text.ip_stripoptions	00000053 ip_stripoptions
00000000 g     F .text.ip_output	000006ee ip_output
00000000 g     F .text.ip_optcopy	0000009a ip_optcopy
00000000 g     F .text.ip_ctloutput	00000302 ip_ctloutput
00000000 g     F .text.ip_pcbopts	00000159 ip_pcbopts
00000000 g     F .text.ip_setmoptions	0000039c ip_setmoptions
00000000 g     F .text.ip_getmoptions	000000bd ip_getmoptions
00000000 g     F .text.ip_freemoptions	0000004a ip_freemoptions
00000000 g     F .text.arp_rtrequest	0000021e arp_rtrequest
00000000 g     F .text.arpresolve	00000180 arpresolve
00000000 g     F .text.arpintr	000000e0 arpintr
00000000 g     F .text.arpioctl	0000000a arpioctl
00000000 g     F .text.arp_ifinit	0000002f arp_ifinit
00000000 g     F .text.revarpinput	00000068 revarpinput
00000000 g     F .text.in_revarpinput	000000d2 in_revarpinput
00000000 g     F .text.revarprequest	000000e0 revarprequest
00000000 g     F .text.revarpwhoarewe	000000b3 revarpwhoarewe
00000000 g     F .text.revarpwhoami	0000001a revarpwhoami
00000000 g     F .text.udp_init	0000001b udp_init
00000000 g     F .text.udp_input	00000530 udp_input
00000000 g     F .text.udp_ctlinput	00000087 udp_ctlinput
00000000 g     F .text.udp_output	00000228 udp_output
00000000 g     F .text.udp_usrreq	00000255 udp_usrreq
00000000 g     F .text.tcp_reass	000002be tcp_reass
00000000 g     F .text.tcpdropoldhalfopen	000000a4 tcpdropoldhalfopen
00000000 g     F .text.tcp_input	000016f9 tcp_input
00000000 g     F .text.tcp_dooptions	000001a8 tcp_dooptions
00000000 g     F .text.tcp_xmit_timer	000000ce tcp_xmit_timer
00000000 g     F .text.tcp_pulloutofband	00000072 tcp_pulloutofband
00000000 g     F .text.tcp_mss	0000026c tcp_mss
00000000 g     F .text.tcp_output	00000aa9 tcp_output
00000000 g     F .text.tcp_setpersist	00000082 tcp_setpersist
00000000 g     F .text.tcp_init	00000026 tcp_init
00000000 g     F .text.tcp_template	00000187 tcp_template
00000000 g     F .text.tcp_respond	0000020a tcp_respond
00000000 g     F .text.tcp_newtcpcb	000000cf tcp_newtcpcb
00000000 g     F .text.tcp_drop	00000064 tcp_drop
00000000 g     F .text.tcp_close	000001c3 tcp_close
00000000 g     F .text.tcp_drain	00000005 tcp_drain
00000000 g     F .text.tcp_notify	000000a2 tcp_notify
00000000 g     F .text.tcp_ctlinput	0000008c tcp_ctlinput
00000000 g     F .text.tcp_quench	00000016 tcp_quench
00000000 g     F .text.tcp_usrreq	000004ba tcp_usrreq
00000000 g     F .text.tcp_attach	0000008f tcp_attach
00000000 g     F .text.tcp_disconnect	0000007d tcp_disconnect
00000000 g     F .text.tcp_usrclosed	00000078 tcp_usrclosed
00000000 g     F .text.tcp_ctloutput	0000018e tcp_ctloutput
00000000 g     F .text.tcp_ident	0000011a tcp_ident
00000000 g     F .text.tcp_fasttimo	00000065 tcp_fasttimo
00000000 g     F .text.tcp_slowtimo	0000013f tcp_slowtimo
00000000 g     F .text.tcp_canceltimers	0000001d tcp_canceltimers
00000000 g     F .text.tcp_timers	00000284 tcp_timers
00000000 g     F .text.real_name	000000b2 real_name
00000000 g     F .text.gethostbyaddr	0000011b gethostbyaddr
00000000 g     F .text.gethostbyname	000001db gethostbyname
00000000 g     F .text.setdomainname	00000087 setdomainname
00000000 g     F .text.getdomainname	00000068 getdomainname
00000000 g     F .text.hstrerror	00000047 hstrerror
00000000 g     F .text.eth_drv_dsr	00000014 eth_drv_dsr
00000000 g     F .text.eth_drv_run_deliveries	00000041 eth_drv_run_deliveries
00000000 g     F .text.eth_drv_tickle_devices	0000003c eth_drv_tickle_devices


-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]