Last change
on this file since 363 was 363, checked in by ykominami, 5 years ago |
add tags/jsp-1.4.4-full-UTF8
|
-
Property svn:executable
set to
*
|
File size:
1.6 KB
|
Rev | Line | |
---|
[363] | 1 | # startup.c
|
---|
| 2 | iniflg
|
---|
| 3 |
|
---|
| 4 | # banner.c
|
---|
| 5 | print_banner
|
---|
| 6 |
|
---|
| 7 | # cpu_config.c, cpu_support.S, sys_config.c, sys_support.S
|
---|
| 8 | dispatch
|
---|
| 9 | exit_and_dispatch
|
---|
| 10 | cpu_initialize
|
---|
| 11 | cpu_terminate
|
---|
| 12 | sys_initialize
|
---|
| 13 | sys_exit
|
---|
| 14 | sys_putc
|
---|
| 15 |
|
---|
| 16 | # task.c
|
---|
| 17 | runtsk
|
---|
| 18 | schedtsk
|
---|
| 19 | reqflg
|
---|
| 20 | enadsp
|
---|
| 21 | ready_queue
|
---|
| 22 | ready_primap
|
---|
| 23 | task_initialize
|
---|
| 24 | search_schedtsk
|
---|
| 25 | make_runnable
|
---|
| 26 | make_non_runnable
|
---|
| 27 | make_dormant
|
---|
| 28 | make_active
|
---|
| 29 | exit_task
|
---|
| 30 | change_priority
|
---|
| 31 | rotate_ready_queue
|
---|
| 32 | call_texrtn
|
---|
| 33 | calltex
|
---|
| 34 |
|
---|
| 35 | # wait.c
|
---|
| 36 | make_wait_tmout
|
---|
| 37 | wait_complete
|
---|
| 38 | wait_tmout
|
---|
| 39 | wait_tmout_ok
|
---|
| 40 | wait_cancel
|
---|
| 41 | wait_release
|
---|
| 42 | wobj_make_wait
|
---|
| 43 | wobj_make_wait_tmout
|
---|
| 44 | wobj_change_priority
|
---|
| 45 |
|
---|
| 46 | # time_event.c
|
---|
| 47 | systim_offset
|
---|
| 48 | current_time
|
---|
| 49 | next_time
|
---|
| 50 | next_subtime
|
---|
| 51 | last_index
|
---|
| 52 | tmevt_initialize
|
---|
| 53 | tmevt_up
|
---|
| 54 | tmevt_down
|
---|
| 55 | tmevtb_insert
|
---|
| 56 | tmevtb_delete
|
---|
| 57 |
|
---|
| 58 | # syslog.c
|
---|
| 59 | syslog_buffer
|
---|
| 60 | syslog_count
|
---|
| 61 | syslog_head
|
---|
| 62 | syslog_tail
|
---|
| 63 | syslog_lost
|
---|
| 64 | syslog_logmask
|
---|
| 65 | syslog_lowmask
|
---|
| 66 | syslog_initialize
|
---|
| 67 | syslog_terminate
|
---|
| 68 |
|
---|
| 69 | # semaphore.c
|
---|
| 70 | semaphore_initialize
|
---|
| 71 |
|
---|
| 72 | # eventflag.c
|
---|
| 73 | eventflag_initialize
|
---|
| 74 | eventflag_cond
|
---|
| 75 |
|
---|
| 76 | # dataqueue.c
|
---|
| 77 | dataqueue_initialize
|
---|
| 78 | enqueue_data
|
---|
| 79 | force_enqueue_data
|
---|
| 80 | dequeue_data
|
---|
| 81 | send_data_rwait
|
---|
| 82 | receive_data_swait
|
---|
| 83 |
|
---|
| 84 | # mailbox.c
|
---|
| 85 | mailbox_initialize
|
---|
| 86 |
|
---|
| 87 | # mempfix.c
|
---|
| 88 | mempfix_initialize
|
---|
| 89 | mempfix_get_block
|
---|
| 90 |
|
---|
| 91 | # cyclic.c
|
---|
| 92 | cyclic_initialize
|
---|
| 93 | tmevtb_enqueue_cyc
|
---|
| 94 | call_cychdr
|
---|
| 95 |
|
---|
| 96 | # interrupt.c
|
---|
| 97 | interrupt_initialize
|
---|
| 98 |
|
---|
| 99 | # exception.c
|
---|
| 100 | exception_initialize
|
---|
| 101 |
|
---|
| 102 | # kernel_cfg.c
|
---|
| 103 | object_initialize
|
---|
| 104 | call_inirtn
|
---|
| 105 | call_terrtn
|
---|
| 106 | tmax_tskid
|
---|
| 107 | tinib_table
|
---|
| 108 | torder_table
|
---|
| 109 | tcb_table
|
---|
| 110 | tmax_semid
|
---|
| 111 | seminib_table
|
---|
| 112 | semcb_table
|
---|
| 113 | tmax_flgid
|
---|
| 114 | flginib_table
|
---|
| 115 | flgcb_table
|
---|
| 116 | tmax_dtqid
|
---|
| 117 | dtqcb_table
|
---|
| 118 | dtqinib_table
|
---|
| 119 | tmax_mbxid
|
---|
| 120 | mbxcb_table
|
---|
| 121 | mbxinib_table
|
---|
| 122 | tmax_mpfid
|
---|
| 123 | mpfinib_table
|
---|
| 124 | mpfcb_table
|
---|
| 125 | tmax_cycid
|
---|
| 126 | cycinib_table
|
---|
| 127 | cyccb_table
|
---|
| 128 | tnum_inhno
|
---|
| 129 | inhinib_table
|
---|
| 130 | tnum_excno
|
---|
| 131 | excinib_table
|
---|
| 132 | tmevt_heap
|
---|
Note:
See
TracBrowser
for help on using the repository browser.