============================================ Index : 2 Symbol : IMFS_Set_handlers (0x4a394) Starting Line : imfs_eval.c:42 (0x4a3c0) Ending Line : imfs_eval.c:42 (0x4a3cf) Size in Bytes : 16 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 4 Symbol : IMFS_create_node (0x4a164) Starting Line : imfs_creat.c:94 (0x4a1ee) Ending Line : imfs_creat.c:98 (0x4a20d) Size in Bytes : 32 Size in Instructions : 9 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 7 Symbol : IMFS_eval_path (0x4a4a4) Starting Line : imfs_eval.c:502 (0x4a594) Ending Line : imfs_eval.c:502 (0x4a597) Size in Bytes : 4 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 9 Symbol : IMFS_eval_path (0x4a4a4) Starting Line : imfs_eval.c:488 (0x4a6fa) Ending Line : imfs_eval.c:663 (0x4a713) Size in Bytes : 26 Size in Instructions : 9 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 10 Symbol : IMFS_eval_path (0x4a4a4) Starting Line : imfs_eval.c:663 (0x4a72e) Ending Line : imfs_eval.c:663 (0x4a737) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 15 Symbol : IMFS_evaluate_link (0x4a7c4) Starting Line : imfs_eval.c:247 (0x4a844) Ending Line : imfs_eval.c:247 (0x4a845) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 17 Symbol : IMFS_evaluate_permission (0x4a41e) Starting Line : imfs_eval.c:84 (0x4a446) Ending Line : imfs_eval.c:118 (0x4a453) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 18 Symbol : IMFS_fifo_lseek (0x437c0) Starting Line : imfs_fifo.c:127 (0x437f8) Ending Line : imfs_fifo.c:127 (0x43807) Size in Bytes : 16 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 21 Symbol : IMFS_fifo_write (0x438b6) Starting Line : imfs_fifo.c:92 (0x4390e) Ending Line : imfs_fifo.c:92 (0x4391b) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 24 Symbol : IMFS_find_match_in_dir (0x4abb4) Starting Line : imfs_getchild.c:51 (0x4abea) Ending Line : imfs_getchild.c:51 (0x4abed) Size in Bytes : 4 Size in Instructions : 1 Classification: Unreachable Explanation: This code cannot be reached. The routine IMFS_find_match_in_dir is called only if the token type is IMFS_NAME. If ".." is present in the path, the token type returned by IMFS_get_token would be IMFS_DIR_UP. With such a setup, IMFS_find_match_in_dir cannot be called with the name as ".." ============================================ ============================================ Index : 28 Symbol : IMFS_fsunmount (0x4ab08) Starting Line : imfs_fsunmount.c:82 (0x4aba8) Ending Line : imfs_fsunmount.c:94 (0x4abaf) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 35 Symbol : IMFS_memfile_get_block_pointer (0x4c550) Starting Line : memfile.c:935 (0x4c5da) Ending Line : memfile.c:944 (0x4c5e5) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 40 Symbol : IMFS_memfile_read (0x4c6f6) Starting Line : memfile.c:633 (0x4c88a) Ending Line : memfile.c:641 (0x4c895) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 42 Symbol : IMFS_memfile_read (0x4c6f6) Starting Line : memfile.c:557 (0x4c920) Ending Line : memfile.c:641 (0x4c951) Size in Bytes : 50 Size in Instructions : 14 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 51 Symbol : IMFS_memfile_write (0x4cc70) Starting Line : memfile.c:754 (0x4cde8) Ending Line : memfile.c:767 (0x4cdf3) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 52 Symbol : IMFS_memfile_write (0x4cc70) Starting Line : memfile.c:708 (0x4ce1e) Ending Line : memfile.c:767 (0x4ce25) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 54 Symbol : IMFS_mknod (0x42638) Starting Line : imfs_mknod.c:38 (0x426a6) Ending Line : imfs_mknod.c:38 (0x426a7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 56 Symbol : IMFS_mount (0x42700) Starting Line : imfs_mount.c:44 (0x4271e) Ending Line : imfs_mount.c:53 (0x4272b) Size in Bytes : 14 Size in Instructions : 5 Classification: Unreachable? Explanation: We need to ask Chris Johns about this. I believe this is a case where the error checking has been done by the system call layer. I analyzed the "file handlers" callbacks for guarantees on parameters. This indicates the same analysis needs to happen for "file system handlers." Bharath: Yes, it is checked in mount.c ============================================ ============================================ Index : 58 Symbol : IMFS_print_jnode (0x45088) Starting Line : imfs_debug.c:88 (0x450b2) Ending Line : imfs_debug.c:92 (0x450d5) Size in Bytes : 36 Size in Instructions : 9 Classification: Simple Test Case Explanation: We need to do an IMFS_dump on an IMFS filesystem which has a bad node type in it. This may require peeking behind the curtain and changing a value. Bharath: But usually, this code is unreachable since we cannot create a node which is not of type that is checked for. ============================================ ============================================ Index : 59 Symbol : IMFS_print_jnode (0x45088) Starting Line : imfs_debug.c:43 (0x450e0) Ending Line : imfs_debug.c:43 (0x450ef) Size in Bytes : 16 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 62 Symbol : IMFS_readlink (0x42744) Starting Line : imfs_readlink.c:39 (0x42786) Ending Line : imfs_readlink.c:43 (0x4278b) Size in Bytes : 6 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 65 Symbol : IMFS_stat (0x4ae14) Starting Line : imfs_stat.c:37 (0x4ae54) Ending Line : imfs_stat.c:37 (0x4ae63) Size in Bytes : 16 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 66 Symbol : IMFS_stat (0x4ae14) Starting Line : ??:0 (0x4af6e) Ending Line : ??:0 (0x4af6f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 67 Symbol : IMFS_unlink (0x428a8) Starting Line : imfs_unlink.c:51 (0x42972) Ending Line : imfs_unlink.c:82 (0x42987) Size in Bytes : 22 Size in Instructions : 7 Classification: Discuss Explanation: I think this is either a simple test or unreachable code. We need to discuss this to figure out which. ============================================ ============================================ Index : 70 Symbol : IMFS_unmount (0x4298c) Starting Line : imfs_unmount.c:45 (0x429b0) Ending Line : imfs_unmount.c:62 (0x429cf) Size in Bytes : 32 Size in Instructions : 12 Classification: Discuss Explanation: I think this is either a simple test or unreachable code. We need to discuss this to figure out which. ============================================ ============================================ Index : 74 Symbol : Stack_check_Dump_threads_usage (0x423d0) Starting Line : check.c:405 (0x423d0) Ending Line : check.c:370 (0x4255f) Size in Bytes : 400 Size in Instructions : 110 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 77 Symbol : Stack_check_report_blown_task (0x4264c) Starting Line : check.c:225 (0x4264c) Ending Line : check.c:265 (0x426fb) Size in Bytes : 176 Size in Instructions : 45 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 78 Symbol : _API_Mutex_Unlock (0x47150) Starting Line : ??:0 (0x47182) Ending Line : ??:0 (0x47183) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 83 Symbol : _CORE_barrier_Wait (0x4edd8) Starting Line : ??:0 (0x4ee6a) Ending Line : ??:0 (0x4ee6b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 84 Symbol : _CORE_message_queue_Close (0x4cfbc) Starting Line : ??:0 (0x4d00e) Ending Line : ??:0 (0x4d00f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 87 Symbol : _CORE_message_queue_Seize (0x504c0) Starting Line : ??:0 (0x505a2) Ending Line : ??:0 (0x505a3) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 88 Symbol : _CORE_message_queue_Submit (0x505a4) Starting Line : ??:0 (0x5066a) Ending Line : ??:0 (0x5066b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 91 Symbol : _CORE_semaphore_Surrender (0x475ac) Starting Line : coresemsurrender.c:71 (0x475f4) Ending Line : ??:0 (0x475fb) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 93 Symbol : _Chain_Initialize (0x4bc60) Starting Line : chain.c:46 (0x4bcc4) Ending Line : chain.c:61 (0x4bccf) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 98 Symbol : _Event_Timeout (0x463dc) Starting Line : ??:0 (0x46486) Ending Line : ??:0 (0x46487) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 100 Symbol : _Heap_Allocate_aligned_with_boundary (0x4be5c) Starting Line : ??:0 (0x4bfee) Ending Line : ??:0 (0x4bfef) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 101 Symbol : _Heap_Block_allocate (0x479ae) Starting Line : ??:0 (0x47ac2) Ending Line : ??:0 (0x47ac3) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 104 Symbol : _Heap_Extend (0x4c318) Starting Line : heapextend.c:243 (0x4c568) Ending Line : heapextend.c:242 (0x4c56f) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 111 Symbol : _Heap_Free (0x4bff0) Starting Line : ??:0 (0x4c16e) Ending Line : ??:0 (0x4c16f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 120 Symbol : _Heap_Walk (0x48516) Starting Line : heap.inl:199 (0x48726) Ending Line : heap.inl:199 (0x48727) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 121 Symbol : _Heap_Walk (0x48516) Starting Line : heapwalk.c:82 (0x4875a) Ending Line : heapwalk.c:82 (0x4875b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 127 Symbol : _Heap_Walk (0x48516) Starting Line : heapwalk.c:95 (0x489be) Ending Line : heapwalk.c:96 (0x489cb) Size in Bytes : 14 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 128 Symbol : _Heap_Walk (0x48516) Starting Line : ??:0 (0x489ea) Ending Line : ??:0 (0x489eb) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 131 Symbol : _Internal_error_Occurred (0x47ac4) Starting Line : interr.c:61 (0x47afe) Ending Line : ??:0 (0x47b27) Size in Bytes : 42 Size in Instructions : 13 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 133 Symbol : _Objects_Allocate (0x47b88) Starting Line : objectallocate.c:60 (0x47b9a) Ending Line : objectallocate.c:60 (0x47b9b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 134 Symbol : _Objects_Close (0x47c18) Starting Line : ??:0 (0x47c42) Ending Line : ??:0 (0x47c43) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 139 Symbol : _Objects_Extend_information (0x47c44) Starting Line : objectextendinformation.c:66 (0x47ea0) Ending Line : objectextendinformation.c:78 (0x47ebf) Size in Bytes : 32 Size in Instructions : 10 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 147 Symbol : _Objects_Shrink_information (0x4821c) Starting Line : objectshrinkinformation.c:72 (0x482c8) Ending Line : ??:0 (0x482d7) Size in Bytes : 16 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 152 Symbol : _RTEMS_tasks_Initialize_user_tasks_body (0x46b8c) Starting Line : ??:0 (0x46c12) Ending Line : ??:0 (0x46c13) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Symbol : _SMP_lock_Spinlock_Initialize *** NEVER REFERENCED *** This symbol was never referenced by an analyzed executable. Therefore there is no size or disassembly for this symbol. This could be due to symbol misspelling or lack of a test for this symbol. ============================================ ============================================ Symbol : _SMP_lock_Spinlock_Obtain *** NEVER REFERENCED *** This symbol was never referenced by an analyzed executable. Therefore there is no size or disassembly for this symbol. This could be due to symbol misspelling or lack of a test for this symbol. ============================================ ============================================ Symbol : _SMP_lock_Spinlock_Release *** NEVER REFERENCED *** This symbol was never referenced by an analyzed executable. Therefore there is no size or disassembly for this symbol. This could be due to symbol misspelling or lack of a test for this symbol. ============================================ ============================================ Index : 157 Symbol : _Scheduler_Handler_initialization (0x48360) Starting Line : ??:0 (0x4836e) Ending Line : ??:0 (0x4836f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 159 Symbol : _Scheduler_priority_Block (0x4838c) Starting Line : schedulerpriority.inl:146 (0x4846a) Ending Line : schedulerpriority.inl:187 (0x48473) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 160 Symbol : _Scheduler_priority_Free (0x48568) Starting Line : ??:0 (0x4857e) Ending Line : ??:0 (0x4857f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 162 Symbol : _Scheduler_priority_Schedule (0x485e8) Starting Line : schedulerpriority.inl:146 (0x48634) Ending Line : schedulerpriority.inl:187 (0x4863b) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 164 Symbol : _Scheduler_priority_Yield (0x48730) Starting Line : schedulerpriorityyield.c:52 (0x48788) Ending Line : schedulerpriorityyield.c:52 (0x4878f) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 166 Symbol : _Scheduler_priority_Yield (0x48730) Starting Line : schedulerpriorityyield.c:52 (0x487b2) Ending Line : schedulerpriorityyield.c:52 (0x487bb) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 170 Symbol : _TOD_Set (0x48fd8) Starting Line : ??:0 (0x4906e) Ending Line : ??:0 (0x4906f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 183 Symbol : _Thread_Close (0x48964) Starting Line : threadclose.c:87 (0x48a7e) Ending Line : threadclose.c:87 (0x48a7f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 187 Symbol : _Thread_Handler (0x4d910) Starting Line : threadhandler.c:182 (0x4d97e) Ending Line : threadhandler.c:184 (0x4d995) Size in Bytes : 24 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 189 Symbol : _Thread_Handler_initialization (0x48fa4) Starting Line : ??:0 (0x4902e) Ending Line : ??:0 (0x4902f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 190 Symbol : _Thread_Reset (0x4d190) Starting Line : ??:0 (0x4d20a) Ending Line : ??:0 (0x4d20b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 191 Symbol : _Thread_Restart (0x4a1b8) Starting Line : threadrestart.c:68 (0x4a23c) Ending Line : threadrestart.c:68 (0x4a243) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 192 Symbol : _Thread_Stack_Free (0x496b4) Starting Line : ??:0 (0x496de) Ending Line : ??:0 (0x496df) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 193 Symbol : _Thread_blocking_operation_Cancel (0x487bc) Starting Line : ??:0 (0x48822) Ending Line : ??:0 (0x48823) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 194 Symbol : _Thread_queue_Dequeue_priority (0x490ac) Starting Line : ??:0 (0x491a6) Ending Line : ??:0 (0x491a7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 196 Symbol : _Thread_queue_Extract_fifo (0x4d9cc) Starting Line : ??:0 (0x4da5a) Ending Line : ??:0 (0x4da5b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 198 Symbol : _Thread_queue_Extract_priority_helper (0x4c340) Starting Line : ??:0 (0x4c42e) Ending Line : ??:0 (0x4c42f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 200 Symbol : _Thread_queue_Initialize (0x49460) Starting Line : ??:0 (0x494f6) Ending Line : ??:0 (0x494f7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 204 Symbol : _Thread_queue_Requeue (0x494f8) Starting Line : threadqrequeue.c:73 (0x49514) Ending Line : threadqrequeue.c:73 (0x4951d) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 206 Symbol : _Thread_queue_Requeue (0x494f8) Starting Line : threadqrequeue.c:71 (0x49534) Ending Line : threadqrequeue.c:71 (0x49535) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 207 Symbol : _Thread_queue_Requeue (0x494f8) Starting Line : ??:0 (0x4956a) Ending Line : ??:0 (0x4956b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 210 Symbol : _Timer_server_Body (0x59448) Starting Line : timerserver.c:117 (0x5950e) Ending Line : timerserver.c:297 (0x5953b) Size in Bytes : 46 Size in Instructions : 19 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 211 Symbol : _Timer_server_Body (0x59448) Starting Line : timerserver.c:345 (0x5954c) Ending Line : timerserver.c:272 (0x59579) Size in Bytes : 46 Size in Instructions : 14 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 212 Symbol : _Timer_server_Body (0x59448) Starting Line : timerserver.c:118 (0x595c2) Ending Line : timerserver.c:118 (0x595cf) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 215 Symbol : _Timer_server_Schedule_operation_method (0x59686) Starting Line : timerserver.c:237 (0x5969c) Ending Line : timerserver.c:237 (0x596b5) Size in Bytes : 26 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 217 Symbol : _Timer_server_Schedule_operation_method (0x59686) Starting Line : timerserver.c:198 (0x597d8) Ending Line : timerserver.c:207 (0x597e1) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 220 Symbol : _User_extensions_Fatal (0x499b6) Starting Line : userextthreadbegin.c:79 (0x499ee) Ending Line : userextthreadbegin.c:79 (0x499f1) Size in Bytes : 4 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 222 Symbol : _User_extensions_Fatal (0x499b6) Starting Line : userextthreadbegin.c:81 (0x499fe) Ending Line : userextthreadbegin.c:81 (0x49a03) Size in Bytes : 6 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 241 Symbol : __kill (0x5b864) Starting Line : kill_noposix.c:47 (0x5b864) Ending Line : kill_noposix.c:47 (0x5b86b) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 242 Symbol : _calloc_r (0x5b740) Starting Line : ??:0 (0x5b75a) Ending Line : ??:0 (0x5b75b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 243 Symbol : _free_r (0x5b75c) Starting Line : ??:0 (0x5b76e) Ending Line : ??:0 (0x5b76f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 244 Symbol : _fstat_r (0x5b80c) Starting Line : ??:0 (0x5b826) Ending Line : ??:0 (0x5b827) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 245 Symbol : _gettimeofday (0x430f2) Starting Line : __gettod.c:81 (0x430f2) Ending Line : ??:0 (0x430ff) Size in Bytes : 14 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 246 Symbol : _isatty_r (0x5b83c) Starting Line : ??:0 (0x5b84e) Ending Line : ??:0 (0x5b84f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 247 Symbol : _lseek_r (0x5b9cc) Starting Line : ??:0 (0x5b9f6) Ending Line : ??:0 (0x5b9f7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 248 Symbol : _lstat_r (0x45294) Starting Line : ??:0 (0x452ae) Ending Line : ??:0 (0x452af) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 249 Symbol : _malloc_r (0x5b9f8) Starting Line : ??:0 (0x5ba0a) Ending Line : ??:0 (0x5ba0b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 250 Symbol : _realloc_r (0x5bae4) Starting Line : ??:0 (0x5bafe) Ending Line : ??:0 (0x5baff) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 252 Symbol : _rename_r (0x47818) Starting Line : _rename_r.c:73 (0x4798c) Ending Line : _rename_r.c:112 (0x47999) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 255 Symbol : _rename_r (0x47818) Starting Line : _rename_r.c:87 (0x479e8) Ending Line : _rename_r.c:88 (0x479ef) Size in Bytes : 8 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 256 Symbol : _unlink_r (0x470f4) Starting Line : ??:0 (0x47106) Ending Line : ??:0 (0x47107) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 257 Symbol : _write_r (0x5bb00) Starting Line : ??:0 (0x5bb22) Ending Line : ??:0 (0x5bb23) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 262 Symbol : devFS_evaluate_path (0x4c588) Starting Line : devfs_eval.c:44 (0x4c636) Ending Line : devfs_eval.c:71 (0x4c64d) Size in Bytes : 24 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 264 Symbol : drainOutput (0x43fe0) Starting Line : termios.c:352 (0x4404c) Ending Line : termios.c:352 (0x44053) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 266 Symbol : echo (0x44d2c) Starting Line : termios.c:788 (0x44d8a) Ending Line : termios.c:786 (0x44d9d) Size in Bytes : 20 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 270 Symbol : erase (0x44dd0) Starting Line : termios.c:807 (0x44dfc) Ending Line : termios.c:808 (0x44e19) Size in Bytes : 30 Size in Instructions : 10 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 273 Symbol : erase (0x44dd0) Starting Line : termios.c:848 (0x44e72) Ending Line : termios.c:848 (0x44e77) Size in Bytes : 6 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 274 Symbol : erase (0x44dd0) Starting Line : termios.c:849 (0x44e8c) Ending Line : termios.c:853 (0x44ec7) Size in Bytes : 60 Size in Instructions : 17 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 277 Symbol : erase (0x44dd0) Starting Line : termios.c:832 (0x44f1c) Ending Line : termios.c:827 (0x44f25) Size in Bytes : 10 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 278 Symbol : erase (0x44dd0) Starting Line : termios.c:827 (0x44f88) Ending Line : termios.c:809 (0x44fc7) Size in Bytes : 64 Size in Instructions : 18 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 279 Symbol : fcntl (0x43ab4) Starting Line : fcntl.c:51 (0x43b1c) Ending Line : fcntl.c:51 (0x43b2f) Size in Bytes : 20 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 281 Symbol : fcntl (0x43ab4) Starting Line : fcntl.c:143 (0x43b78) Ending Line : fcntl.c:162 (0x43b8f) Size in Bytes : 24 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 283 Symbol : fcntl (0x43ab4) Starting Line : fcntl.c:162 (0x43b9e) Ending Line : fcntl.c:162 (0x43ba9) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 285 Symbol : fcntl (0x43ab4) Starting Line : fcntl.c:140 (0x43c14) Ending Line : fcntl.c:140 (0x43c15) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 286 Symbol : fcntl (0x43ab4) Starting Line : fcntl.c:55 (0x43c24) Ending Line : fcntl.c:65 (0x43c59) Size in Bytes : 54 Size in Instructions : 13 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 289 Symbol : fifo_open (0x4d0c4) Starting Line : libio_.h:169 (0x4d17c) Ending Line : fifo.c:224 (0x4d19b) Size in Bytes : 32 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 292 Symbol : fifo_open (0x4d0c4) Starting Line : fifo.c:385 (0x4d468) Ending Line : fifo.c:386 (0x4d477) Size in Bytes : 16 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 293 Symbol : fifo_open (0x4d0c4) Starting Line : fifo.c:150 (0x4d484) Ending Line : fifo.c:234 (0x4d4b5) Size in Bytes : 50 Size in Instructions : 14 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 294 Symbol : fpathconf (0x43d48) Starting Line : fpathconf.c:44 (0x43dac) Ending Line : fpathconf.c:44 (0x43dc3) Size in Bytes : 24 Size in Instructions : 10 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 296 Symbol : free (0x42fe4) Starting Line : ??:0 (0x43072) Ending Line : ??:0 (0x43073) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 298 Symbol : free_user_env (0x4470c) Starting Line : privateenv.c:44 (0x44748) Ending Line : privateenv.c:44 (0x4474f) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 304 Symbol : getdents (0x5d3c8) Starting Line : getdents.c:41 (0x5d43e) Ending Line : getdents.c:41 (0x5d441) Size in Bytes : 4 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Symbol : getpagesize *** NEVER REFERENCED *** This symbol was never referenced by an analyzed executable. Therefore there is no size or disassembly for this symbol. This could be due to symbol misspelling or lack of a test for this symbol. ============================================ ============================================ Index : 307 Symbol : gettimeofday (0x43074) Starting Line : __gettod.c:37 (0x430c0) Ending Line : __gettod.c:37 (0x430d3) Size in Bytes : 20 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 309 Symbol : imfs_dir_open (0x4d2ac) Starting Line : imfs_directory.c:57 (0x4d2c2) Ending Line : imfs_directory.c:57 (0x4d2c9) Size in Bytes : 8 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 312 Symbol : iproc (0x44fc8) Starting Line : termios.c:872 (0x44fe4) Ending Line : termios.c:872 (0x44fe7) Size in Bytes : 4 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 315 Symbol : iproc (0x44fc8) Starting Line : termios.c:917 (0x4503e) Ending Line : termios.c:917 (0x4504d) Size in Bytes : 16 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 317 Symbol : iproc (0x44fc8) Starting Line : termios.c:919 (0x4505c) Ending Line : termios.c:920 (0x45067) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 320 Symbol : iproc (0x44fc8) Starting Line : termios.c:904 (0x450c0) Ending Line : termios.c:920 (0x450e1) Size in Bytes : 34 Size in Instructions : 11 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 322 Symbol : iproc (0x44fc8) Starting Line : termios.c:883 (0x450e8) Ending Line : termios.c:883 (0x450eb) Size in Bytes : 4 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 323 Symbol : iproc (0x44fc8) Starting Line : termios.c:905 (0x4511c) Ending Line : termios.c:906 (0x4513b) Size in Bytes : 32 Size in Instructions : 11 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 325 Symbol : iproc (0x44fc8) Starting Line : termios.c:900 (0x4515a) Ending Line : termios.c:900 (0x4516f) Size in Bytes : 22 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 326 Symbol : iproc (0x44fc8) Starting Line : termios.c:896 (0x4519e) Ending Line : termios.c:920 (0x451a9) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 327 Symbol : kill (0x5b850) Starting Line : kill_noposix.c:33 (0x5b850) Ending Line : kill_noposix.c:31 (0x5b855) Size in Bytes : 6 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 329 Symbol : libc_wrapup (0x438a8) Starting Line : newlibc_exit.c:90 (0x438b8) Ending Line : newlibc_exit.c:90 (0x438bf) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 336 Symbol : memfile_lseek (0x4cfa4) Starting Line : memfile.c:220 (0x4d014) Ending Line : memfile.c:229 (0x4d02d) Size in Bytes : 26 Size in Instructions : 9 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 338 Symbol : memfile_open (0x4ce6c) Starting Line : memfile.c:102 (0x4cec4) Ending Line : memfile.c:119 (0x4cf2f) Size in Bytes : 108 Size in Instructions : 35 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 340 Symbol : mount (0x4356c) Starting Line : mount.c:252 (0x437aa) Ending Line : mount.c:252 (0x437b3) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 341 Symbol : mount (0x4356c) Starting Line : mount.c:157 (0x437ca) Ending Line : mount.c:258 (0x437e1) Size in Bytes : 24 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 342 Symbol : mount (0x4356c) Starting Line : mount.c:219 (0x43828) Ending Line : mount.c:258 (0x43849) Size in Bytes : 34 Size in Instructions : 11 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 343 Symbol : mount (0x4356c) Starting Line : mount.c:257 (0x43866) Ending Line : mount.c:258 (0x43871) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 344 Symbol : mount (0x4356c) Starting Line : ??:0 (0x438a6) Ending Line : ??:0 (0x438a7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 346 Symbol : mount_and_make_target_path (0x43cc0) Starting Line : mount-mktgt.c:56 (0x43cf2) Ending Line : mount-mktgt.c:56 (0x43cfb) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 349 Symbol : newlib_free_buffers (0x43934) Starting Line : newlibc_reent.c:121 (0x4394e) Ending Line : newlibc_reent.c:121 (0x43957) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 351 Symbol : newlib_free_buffers (0x43934) Starting Line : newlibc_reent.c:115 (0x4396c) Ending Line : newlibc_reent.c:124 (0x4398f) Size in Bytes : 36 Size in Instructions : 10 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 352 Symbol : open (0x43c28) Starting Line : open.c:172 (0x43d9c) Ending Line : open.c:172 (0x43dbd) Size in Bytes : 34 Size in Instructions : 10 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 353 Symbol : open (0x43c28) Starting Line : open.c:193 (0x43dc4) Ending Line : open.c:193 (0x43ddb) Size in Bytes : 24 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 357 Symbol : open (0x43c28) Starting Line : open.c:72 (0x43e86) Ending Line : open.c:139 (0x43e8d) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 358 Symbol : open_dev_console (0x43bb4) Starting Line : ??:0 (0x43c26) Ending Line : ??:0 (0x43c27) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 361 Symbol : oproc (0x44b4e) Starting Line : termios.c:727 (0x44bd6) Ending Line : termios.c:739 (0x44c15) Size in Bytes : 64 Size in Instructions : 19 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 363 Symbol : oproc (0x44b4e) Starting Line : termios.c:697 (0x44c1c) Ending Line : termios.c:697 (0x44c1f) Size in Bytes : 4 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 365 Symbol : oproc (0x44b4e) Starting Line : termios.c:705 (0x44c54) Ending Line : termios.c:739 (0x44c91) Size in Bytes : 62 Size in Instructions : 18 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 367 Symbol : oproc (0x44b4e) Starting Line : termios.c:723 (0x44cae) Ending Line : termios.c:733 (0x44d07) Size in Bytes : 90 Size in Instructions : 24 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 369 Symbol : pipe_create (0x4c2f8) Starting Line : pipe.c:37 (0x4c31a) Ending Line : pipe.c:78 (0x4c325) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 372 Symbol : pipe_create (0x4c2f8) Starting Line : pipe.c:64 (0x4c3da) Ending Line : pipe.c:64 (0x4c3dd) Size in Bytes : 4 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 374 Symbol : pipe_ioctl (0x4d8fe) Starting Line : fifo.c:562 (0x4d93a) Ending Line : fifo.c:571 (0x4d93f) Size in Bytes : 6 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 377 Symbol : pipe_read (0x4d51c) Starting Line : fifo.c:453 (0x4d5c4) Ending Line : fifo.c:453 (0x4d5cb) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 378 Symbol : pipe_read (0x4d51c) Starting Line : fifo.c:419 (0x4d5dc) Ending Line : fifo.c:419 (0x4d5e3) Size in Bytes : 8 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 379 Symbol : pipe_read (0x4d51c) Starting Line : fifo.c:402 (0x4d5f2) Ending Line : fifo.c:459 (0x4d5fd) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 380 Symbol : pipe_read (0x4d51c) Starting Line : fifo.c:422 (0x4d6a2) Ending Line : fifo.c:456 (0x4d6b1) Size in Bytes : 16 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 381 Symbol : pipe_read (0x4d51c) Starting Line : fifo.c:453 (0x4d6f6) Ending Line : fifo.c:453 (0x4d70d) Size in Bytes : 24 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 386 Symbol : pipe_write (0x4d70e) Starting Line : fifo.c:475 (0x4d720) Ending Line : fifo.c:545 (0x4d72b) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 390 Symbol : pipe_write (0x4d70e) Starting Line : fifo.c:499 (0x4d7d0) Ending Line : fifo.c:499 (0x4d7d3) Size in Bytes : 4 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 391 Symbol : pipe_write (0x4d70e) Starting Line : fifo.c:478 (0x4d7ee) Ending Line : fifo.c:533 (0x4d805) Size in Bytes : 24 Size in Instructions : 9 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 392 Symbol : pipe_write (0x4d70e) Starting Line : fifo.c:486 (0x4d812) Ending Line : fifo.c:522 (0x4d82d) Size in Bytes : 28 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 394 Symbol : pipe_write (0x4d70e) Starting Line : fifo.c:488 (0x4d8ac) Ending Line : fifo.c:529 (0x4d8b5) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 395 Symbol : pipe_write (0x4d70e) Starting Line : fifo.c:502 (0x4d8c8) Ending Line : fifo.c:502 (0x4d8cd) Size in Bytes : 6 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 397 Symbol : putk (0x440a4) Starting Line : ??:0 (0x440da) Ending Line : ??:0 (0x440db) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 401 Symbol : readlink (0x468a4) Starting Line : readlink.c:36 (0x468de) Ending Line : readlink.c:48 (0x468e9) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 410 Symbol : readv (0x45150) Starting Line : readv.c:108 (0x4524a) Ending Line : readv.c:120 (0x45257) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 413 Symbol : realloc (0x5bb24) Starting Line : realloc.c:52 (0x5bb8c) Ending Line : realloc.c:87 (0x5bba3) Size in Bytes : 24 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 416 Symbol : realloc (0x5bb24) Starting Line : realloc.c:79 (0x5bc22) Ending Line : realloc.c:79 (0x5bc25) Size in Bytes : 4 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 418 Symbol : rmdir (0x443fc) Starting Line : rmdir.c:81 (0x44500) Ending Line : rmdir.c:81 (0x4450d) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 420 Symbol : rtems_assoc_local_by_remote_bitfield (0x4d5d0) Starting Line : assoclocalbyremotebitfield.c:28 (0x4d616) Ending Line : assoclocalbyremotebitfield.c:28 (0x4d617) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 421 Symbol : rtems_assoc_name_by_local_bitfield (0x4382c) Starting Line : ??:0 (0x438a6) Ending Line : ??:0 (0x438a7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 422 Symbol : rtems_assoc_name_by_remote_bitfield (0x438e0) Starting Line : ??:0 (0x4395a) Ending Line : ??:0 (0x4395b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 427 Symbol : rtems_assoc_remote_by_local_bitfield (0x43ad0) Starting Line : assocremotebylocalbitfield.c:28 (0x43b16) Ending Line : assocremotebylocalbitfield.c:28 (0x43b17) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 431 Symbol : rtems_bsp_cmdline_get_param (0x42b18) Starting Line : ??:0 (0x42ba6) Ending Line : ??:0 (0x42ba7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 435 Symbol : rtems_bsp_cmdline_get_param_rhs (0x42bd0) Starting Line : bspcmdline_getparamrhs.c:43 (0x42c6e) Ending Line : bspcmdline_getparamrhs.c:43 (0x42c6f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 436 Symbol : rtems_chain_append_with_notification (0x47490) Starting Line : ??:0 (0x474da) Ending Line : ??:0 (0x474db) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 437 Symbol : rtems_chain_get_with_notification (0x474dc) Starting Line : ??:0 (0x47526) Ending Line : ??:0 (0x47527) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 439 Symbol : rtems_chain_prepend_with_notification (0x4758c) Starting Line : ??:0 (0x475d6) Ending Line : ??:0 (0x475d7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 441 Symbol : rtems_deviceio_errno (0x4da5c) Starting Line : deviceerrno.c:69 (0x4da98) Ending Line : deviceerrno.c:69 (0x4daa7) Size in Bytes : 16 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 444 Symbol : rtems_filesystem_get_mount_handler (0x4b5bc) Starting Line : mount-mgr.c:100 (0x4b5e6) Ending Line : mount-mgr.c:100 (0x4b5e7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 446 Symbol : rtems_filesystem_initialize (0x42ad4) Starting Line : base_fs.c:52 (0x42bb2) Ending Line : ??:0 (0x42bd7) Size in Bytes : 38 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 451 Symbol : rtems_filesystem_mount_iterate (0x434f0) Starting Line : libio_.h:169 (0x43552) Ending Line : mount.c:282 (0x43567) Size in Bytes : 22 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 456 Symbol : rtems_filesystem_prefix_separators (0x42f7a) Starting Line : eval.c:143 (0x42fc0) Ending Line : eval.c:151 (0x42fcb) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 459 Symbol : rtems_gxx_key_create (0x43b98) Starting Line : gxx_wrappers.c:84 (0x43bde) Ending Line : gxx_wrappers.c:86 (0x43bf1) Size in Bytes : 20 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 463 Symbol : rtems_gxx_once (0x43b1c) Starting Line : gxx_wrappers.c:51 (0x43b7c) Ending Line : gxx_wrappers.c:56 (0x43b93) Size in Bytes : 24 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 464 Symbol : rtems_gxx_recursive_mutex_unlock (0x43daa) Starting Line : ??:0 (0x43db6) Ending Line : ??:0 (0x43db7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 466 Symbol : rtems_gxx_setspecific (0x43c98) Starting Line : gxx_wrappers.c:174 (0x43cc4) Ending Line : gxx_wrappers.c:173 (0x43cc9) Size in Bytes : 6 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Symbol : rtems_heap_extend *** NEVER REFERENCED *** This symbol was never referenced by an analyzed executable. Therefore there is no size or disassembly for this symbol. This could be due to symbol misspelling or lack of a test for this symbol. ============================================ ============================================ Index : 468 Symbol : rtems_initialize_start_multitasking (0x46e26) Starting Line : ??:0 (0x46e3a) Ending Line : ??:0 (0x46e3b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 470 Symbol : rtems_io_register_driver (0x48388) Starting Line : ioregisterdriver.c:55 (0x484e4) Ending Line : ioregisterdriver.c:55 (0x484e5) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 475 Symbol : rtems_libio_free (0x4b346) Starting Line : libio.c:185 (0x4b36a) Ending Line : libio_.h:169 (0x4b399) Size in Bytes : 48 Size in Instructions : 10 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 481 Symbol : rtems_libio_init (0x43100) Starting Line : libio_init.c:89 (0x4318e) Ending Line : libio_init.c:81 (0x4319d) Size in Bytes : 16 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 485 Symbol : rtems_libio_set_private_env (0x44754) Starting Line : privateenv.c:125 (0x44788) Ending Line : privateenv.c:126 (0x44793) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 488 Symbol : rtems_libio_share_private_env (0x4487e) Starting Line : privateenv.c:204 (0x448d0) Ending Line : privateenv.c:204 (0x448dd) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 489 Symbol : rtems_libio_share_private_env (0x4487e) Starting Line : ??:0 (0x448fa) Ending Line : ??:0 (0x448fb) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 492 Symbol : rtems_libio_to_fcntl_flags (0x4b234) Starting Line : libio.c:104 (0x4b274) Ending Line : libio.c:104 (0x4b281) Size in Bytes : 14 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 500 Symbol : rtems_mkdir (0x4db8c) Starting Line : rtems_mkdir.c:140 (0x4dce2) Ending Line : rtems_mkdir.c:140 (0x4dce5) Size in Bytes : 4 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 502 Symbol : rtems_mkdir (0x4db8c) Starting Line : rtems_mkdir.c:125 (0x4dcea) Ending Line : rtems_mkdir.c:125 (0x4dcf3) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 503 Symbol : rtems_object_get_api_class_name (0x482b0) Starting Line : ??:0 (0x48306) Ending Line : ??:0 (0x48307) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 507 Symbol : rtems_object_get_class_information (0x48370) Starting Line : rtemsobjectgetclassinfo.c:51 (0x48404) Ending Line : ??:0 (0x4840f) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 513 Symbol : rtems_print_buffer (0x423fc) Starting Line : dumpbuf.c:74 (0x42604) Ending Line : dumpbuf.c:74 (0x42605) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 514 Symbol : rtems_print_buffer (0x423fc) Starting Line : dumpbuf.c:66 (0x4262c) Ending Line : ??:0 (0x4264b) Size in Bytes : 32 Size in Instructions : 9 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 516 Symbol : rtems_rate_monotonic_period (0x47800) Starting Line : ratemonperiod.c:265 (0x47870) Ending Line : ratemonperiod.c:278 (0x47877) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 520 Symbol : rtems_rate_monotonic_report_statistics_with_plugin (0x47a0c) Starting Line : ratemonreportstatistics.c:98 (0x47af6) Ending Line : ratemonreportstatistics.c:98 (0x47af7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 521 Symbol : rtems_rate_monotonic_report_statistics_with_plugin (0x47a0c) Starting Line : ratemonreportstatistics.c:98 (0x47baa) Ending Line : ratemonreportstatistics.c:98 (0x47bad) Size in Bytes : 4 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 523 Symbol : rtems_rate_monotonic_reset_all_statistics (0x47bc8) Starting Line : ??:0 (0x47c12) Ending Line : ??:0 (0x47c13) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 524 Symbol : rtems_region_create (0x576a4) Starting Line : ??:0 (0x577ca) Ending Line : ??:0 (0x577cb) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 525 Symbol : rtems_region_extend (0x5787c) Starting Line : ??:0 (0x57932) Ending Line : ??:0 (0x57933) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 528 Symbol : rtems_region_get_segment_size (0x57bb8) Starting Line : regiongetsegmentsize.c:81 (0x57c14) Ending Line : regiongetsegmentsize.c:82 (0x57c23) Size in Bytes : 16 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 530 Symbol : rtems_semaphore_delete (0x46690) Starting Line : ??:0 (0x46766) Ending Line : ??:0 (0x46767) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 531 Symbol : rtems_semaphore_flush (0x4fae8) Starting Line : ??:0 (0x4fb5a) Ending Line : ??:0 (0x4fb5b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 532 Symbol : rtems_semaphore_obtain (0x46768) Starting Line : ??:0 (0x468a6) Ending Line : ??:0 (0x468a7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 533 Symbol : rtems_shutdown_executive (0x46e3c) Starting Line : thread.inl:50 (0x46e70) Ending Line : ??:0 (0x46e83) Size in Bytes : 20 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 541 Symbol : rtems_stack_checker_is_blown (0x4277c) Starting Line : check.c:303 (0x427d4) Ending Line : check.c:328 (0x427ef) Size in Bytes : 28 Size in Instructions : 8 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 542 Symbol : rtems_stack_checker_report_usage (0x42856) Starting Line : check.c:513 (0x42856) Ending Line : check.c:515 (0x4286b) Size in Bytes : 22 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 543 Symbol : rtems_stack_checker_report_usage_with_plugin (0x427f0) Starting Line : check.c:488 (0x427f0) Ending Line : check.c:510 (0x42851) Size in Bytes : 98 Size in Instructions : 24 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 547 Symbol : rtems_stack_checker_switch_extension (0x426fc) Starting Line : check.c:288 (0x4273e) Ending Line : check.c:292 (0x4277b) Size in Bytes : 62 Size in Instructions : 17 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 548 Symbol : rtems_string_to_double (0x4d8e4) Starting Line : stringtodouble.c:33 (0x4d8e4) Ending Line : stringtodouble.c:45 (0x4d9cb) Size in Bytes : 232 Size in Instructions : 76 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 552 Symbol : rtems_string_to_float (0x4d9cc) Starting Line : stringtofloat.c:53 (0x4da6c) Ending Line : stringtofloat.c:58 (0x4da77) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 555 Symbol : rtems_string_to_int (0x4da98) Starting Line : stringtoint.c:53 (0x4db06) Ending Line : stringtoint.c:53 (0x4db0d) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Symbol : rtems_string_to_long_double *** NEVER REFERENCED *** This symbol was never referenced by an analyzed executable. Therefore there is no size or disassembly for this symbol. This could be due to symbol misspelling or lack of a test for this symbol. ============================================ ============================================ Index : 560 Symbol : rtems_string_to_long_long (0x4db38) Starting Line : ??:0 (0x4dbf6) Ending Line : ??:0 (0x4dbf7) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 563 Symbol : rtems_string_to_unsigned_char (0x4dcb4) Starting Line : stringtounsignedchar.c:53 (0x4dd20) Ending Line : stringtounsignedchar.c:66 (0x4dd49) Size in Bytes : 42 Size in Instructions : 17 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 565 Symbol : rtems_string_to_unsigned_int (0x4dd68) Starting Line : ??:0 (0x4ddfe) Ending Line : ??:0 (0x4ddff) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 567 Symbol : rtems_string_to_unsigned_long (0x4deb0) Starting Line : ??:0 (0x4df46) Ending Line : ??:0 (0x4df47) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 569 Symbol : rtems_string_to_unsigned_long_long (0x4de00) Starting Line : ??:0 (0x4deae) Ending Line : ??:0 (0x4deaf) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 572 Symbol : rtems_tarfs_load (0x42b8c) Starting Line : imfs_load_tar.c:180 (0x42cca) Ending Line : imfs_load_tar.c:181 (0x42cd7) Size in Bytes : 14 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 574 Symbol : rtems_tarfs_load (0x42b8c) Starting Line : imfs_load_tar.c:151 (0x42d04) Ending Line : imfs_load_tar.c:151 (0x42d0b) Size in Bytes : 8 Size in Instructions : 2 Classification: Simple Test Case Explanation: We apparently only have a relative symbolic link. We need to include one which has an absolute path. This will be a broken symlink on the host but resolve fine on the target. ============================================ ============================================ Index : 580 Symbol : rtems_task_variable_delete (0x47b78) Starting Line : ??:0 (0x47c1e) Ending Line : ??:0 (0x47c1f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 585 Symbol : rtems_termios_close (0x44496) Starting Line : termios.c:416 (0x44528) Ending Line : termios.c:416 (0x44529) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 587 Symbol : rtems_termios_close (0x44496) Starting Line : termios.c:397 (0x445de) Ending Line : termios.c:397 (0x445e5) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 591 Symbol : rtems_termios_dequeue_characters (0x45c6e) Starting Line : termios.c:1389 (0x45cc4) Ending Line : termios.c:1389 (0x45ccb) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 596 Symbol : rtems_termios_enqueue_raw_characters (0x4566c) Starting Line : termios.c:1149 (0x456fa) Ending Line : termios.c:1244 (0x45707) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 598 Symbol : rtems_termios_enqueue_raw_characters (0x4566c) Starting Line : termios.c:1199 (0x4578e) Ending Line : termios.c:1212 (0x457cb) Size in Bytes : 62 Size in Instructions : 15 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 601 Symbol : rtems_termios_enqueue_raw_characters (0x4566c) Starting Line : termios.c:1234 (0x457f2) Ending Line : termios.c:1235 (0x45801) Size in Bytes : 16 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 602 Symbol : rtems_termios_enqueue_raw_characters (0x4566c) Starting Line : termios.c:1174 (0x45826) Ending Line : termios.c:1128 (0x45837) Size in Bytes : 18 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 604 Symbol : rtems_termios_enqueue_raw_characters (0x4566c) Starting Line : termios.c:1182 (0x45846) Ending Line : termios.c:1191 (0x45885) Size in Bytes : 64 Size in Instructions : 23 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 606 Symbol : rtems_termios_enqueue_raw_characters (0x4566c) Starting Line : termios.c:1225 (0x458a4) Ending Line : termios.c:1216 (0x4591d) Size in Bytes : 122 Size in Instructions : 37 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 609 Symbol : rtems_termios_ioctl (0x44668) Starting Line : termios.c:612 (0x44732) Ending Line : termios.c:623 (0x4475f) Size in Bytes : 46 Size in Instructions : 13 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 611 Symbol : rtems_termios_ioctl (0x44668) Starting Line : termios.c:463 (0x447b8) Ending Line : termios.c:472 (0x447d9) Size in Bytes : 34 Size in Instructions : 11 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 613 Symbol : rtems_termios_ioctl (0x44668) Starting Line : termios.c:484 (0x44814) Ending Line : termios.c:499 (0x44855) Size in Bytes : 66 Size in Instructions : 21 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 614 Symbol : rtems_termios_ioctl (0x44668) Starting Line : termios.c:499 (0x449a0) Ending Line : termios.c:623 (0x449b3) Size in Bytes : 20 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 615 Symbol : rtems_termios_ioctl (0x44668) Starting Line : termios.c:614 (0x449ec) Ending Line : termios.c:472 (0x44a37) Size in Bytes : 76 Size in Instructions : 22 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 618 Symbol : rtems_termios_open (0x44054) Starting Line : termios.c:130 (0x44310) Ending Line : termios.c:130 (0x4431b) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 622 Symbol : rtems_termios_open (0x44054) Starting Line : termios.c:257 (0x443ee) Ending Line : termios.c:257 (0x443ef) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 623 Symbol : rtems_termios_open (0x44054) Starting Line : termios.c:162 (0x4443a) Ending Line : termios.c:333 (0x44465) Size in Bytes : 44 Size in Instructions : 13 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 626 Symbol : rtems_termios_puts (0x44a4a) Starting Line : termios.c:676 (0x44ae4) Ending Line : termios.c:678 (0x44af5) Size in Bytes : 18 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 627 Symbol : rtems_termios_puts (0x44a4a) Starting Line : termios.c:664 (0x44b46) Ending Line : termios.c:664 (0x44b4d) Size in Bytes : 8 Size in Instructions : 2 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 634 Symbol : rtems_termios_read (0x4530a) Starting Line : termios.c:1032 (0x4547c) Ending Line : termios.c:1035 (0x45497) Size in Bytes : 28 Size in Instructions : 10 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 635 Symbol : rtems_termios_read (0x4530a) Starting Line : termios.c:1058 (0x454f6) Ending Line : termios.c:1047 (0x4554d) Size in Bytes : 88 Size in Instructions : 27 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 638 Symbol : rtems_termios_read (0x4530a) Starting Line : termios.c:967 (0x455e4) Ending Line : termios.c:968 (0x455f3) Size in Bytes : 16 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 641 Symbol : rtems_termios_read (0x4530a) Starting Line : termios.c:977 (0x4562c) Ending Line : termios.c:984 (0x4564f) Size in Bytes : 36 Size in Instructions : 12 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 643 Symbol : rtems_termios_refill_transmitter (0x459ba) Starting Line : termios.c:1327 (0x45ab6) Ending Line : termios.c:1358 (0x45ac9) Size in Bytes : 20 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 644 Symbol : rtems_termios_refill_transmitter (0x459ba) Starting Line : termios.c:1262 (0x45b18) Ending Line : termios.c:1361 (0x45be1) Size in Bytes : 202 Size in Instructions : 64 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 647 Symbol : rtems_termios_rxdaemon (0x4591e) Starting Line : termios.c:1464 (0x4599c) Ending Line : termios.c:1472 (0x459b9) Size in Bytes : 30 Size in Instructions : 12 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 650 Symbol : rtems_termios_txdaemon (0x45bec) Starting Line : termios.c:1433 (0x45c3c) Ending Line : termios.c:1433 (0x45c41) Size in Bytes : 6 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 652 Symbol : rtems_termios_txdaemon (0x45bec) Starting Line : termios.c:1425 (0x45c62) Ending Line : termios.c:1426 (0x45c6d) Size in Bytes : 12 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 656 Symbol : rtems_termios_write (0x45234) Starting Line : termios.c:764 (0x452da) Ending Line : termios.c:762 (0x45309) Size in Bytes : 48 Size in Instructions : 13 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 661 Symbol : rtems_timer_reset (0x590e4) Starting Line : ??:0 (0x5918a) Ending Line : ??:0 (0x5918b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 663 Symbol : rtems_timer_server_fire_when (0x59274) Starting Line : timerserverfirewhen.c:62 (0x5933e) Ending Line : timerserverfirewhen.c:96 (0x59349) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 665 Symbol : rtems_verror (0x42c3c) Starting Line : thread.inl:185 (0x42c62) Ending Line : thread.inl:186 (0x42c75) Size in Bytes : 20 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 666 Symbol : rtems_verror (0x42c3c) Starting Line : error.c:124 (0x42d32) Ending Line : error.c:156 (0x42d3f) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 669 Symbol : scanInt (0x4371c) Starting Line : getpwent.c:127 (0x437a6) Ending Line : getpwent.c:128 (0x437b7) Size in Bytes : 18 Size in Instructions : 7 Classification: Discuss Explanation: I think this is detecting whether or not the read can be fulfilled from the buffer. But I am not sure. ============================================ ============================================ Index : 681 Symbol : scangr (0x4388a) Starting Line : getpwent.c:308 (0x43994) Ending Line : getpwent.c:330 (0x439a1) Size in Bytes : 14 Size in Instructions : 6 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 686 Symbol : siproc (0x451c0) Starting Line : termios.c:939 (0x451de) Ending Line : termios.c:939 (0x451f9) Size in Bytes : 28 Size in Instructions : 7 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 688 Symbol : statvfs (0x46b8c) Starting Line : statvfs.c:40 (0x46bc6) Ending Line : statvfs.c:52 (0x46bd1) Size in Bytes : 12 Size in Instructions : 4 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 691 Symbol : tcsetattr (0x4c7a0) Starting Line : ??:0 (0x4c80e) Ending Line : ??:0 (0x4c80f) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Symbol : uname *** NEVER REFERENCED *** This symbol was never referenced by an analyzed executable. Therefore there is no size or disassembly for this symbol. This could be due to symbol misspelling or lack of a test for this symbol. ============================================ ============================================ Index : 693 Symbol : unlink (0x46f80) Starting Line : unlink.c:67 (0x47068) Ending Line : unlink.c:84 (0x47075) Size in Bytes : 14 Size in Instructions : 5 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 698 Symbol : unmount (0x47300) Starting Line : unmount.c:140 (0x47434) Ending Line : unmount.c:141 (0x4744f) Size in Bytes : 28 Size in Instructions : 9 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 700 Symbol : vprintk (0x45ccc) Starting Line : vprintk.c:50 (0x45ec0) Ending Line : vprintk.c:50 (0x45ec1) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 702 Symbol : vprintk (0x45ccc) Starting Line : ??:0 (0x4602a) Ending Line : ??:0 (0x4602b) Size in Bytes : 2 Size in Instructions : 1 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 713 Symbol : writev (0x4748c) Starting Line : writev.c:103 (0x47534) Ending Line : writev.c:103 (0x47539) Size in Bytes : 6 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================ ============================================ Index : 718 Symbol : writev (0x4748c) Starting Line : writev.c:115 (0x475aa) Ending Line : writev.c:127 (0x475b3) Size in Bytes : 10 Size in Instructions : 3 Classification: NONE Explanation: No Explanation ============================================