Changeset eb91a4b in rtems
- Timestamp:
- 06/04/99 13:37:43 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8dba373
- Parents:
- 6ff1ac4e
- Location:
- doc/itron3.0
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/itron3.0/Makefile
r6ff1ac4e reb91a4b 12 12 TEXI2WWW=../tools/texi2www 13 13 BMENU=../tools/bmenu 14 TEXI2WWW_ARGS=-dirfile index.html \14 TEXI2WWW_ARGS=-dirfile ../../../index.html \ 15 15 -header ../tools/rtems_header.html \ 16 16 -footer ../tools/rtems_footer.html \ … … 25 25 task.texi tasksync.texi semaphore.texi eventflags.texi mailbox.texi \ 26 26 msgbuffer.texi rendezvous.texi interrupt.texi memorypool.texi \ 27 fixedblock.texi time.texi config.texi network.texi 27 fixedblock.texi time.texi config.texi network.texi \ 28 psxmsg.texi psxsem.texi 28 29 29 30 FILES= $(PROJECT).texi \ … … 122 123 -n "" ${*}.t 123 124 125 psxmsg.texi: psxmsg.t Makefile 126 $(BMENU) -p "" \ 127 -u "Top" \ 128 -n "" ${*}.t 129 130 psxsem.texi: psxsem.t Makefile 131 $(BMENU) -p "" \ 132 -u "Top" \ 133 -n "" ${*}.t 134 -
doc/itron3.0/config.t
r6ff1ac4e reb91a4b 41 41 42 42 @page 43 @subsection get_ver - Get Version Information Get Version Information of another Node43 @subsection get_ver - Get Version Information 44 44 45 45 @subheading CALLING SEQUENCE: … … 47 47 @ifset is-C 48 48 @example 49 ER get_ver 50 T_VER *pk_ver ER nget_ver49 ER get_ver( 50 T_VER *pk_ver 51 51 ); 52 52 @end example … … 70 70 71 71 @page 72 @subsection ref_sys - 72 @subsection ref_sys - Reference Semaphore Status 73 73 74 74 @subheading CALLING SEQUENCE: … … 76 76 @ifset is-C 77 77 @example 78 ER ref_sys 78 ER ref_sys( 79 79 T_RSYS *pk_rsys 80 80 ); … … 99 99 100 100 @page 101 @subsection ref_cfg - 101 @subsection ref_cfg - Reference Configuration Information 102 102 103 103 @subheading CALLING SEQUENCE: … … 105 105 @ifset is-C 106 106 @example 107 ER ref_cfg 107 ER ref_cfg( 108 108 T_RCFG *pk_rcfg 109 109 ); … … 128 128 129 129 @page 130 @subsection def_svc - 130 @subsection def_svc - Define Extended SVC Handler 131 131 132 132 @subheading CALLING SEQUENCE: … … 134 134 @ifset is-C 135 135 @example 136 ER def_svc ( 137 FN s_fncd, T_DSVC *pk_dsvc 136 ER def_svc( 137 FN s_fncd, 138 T_DSVC *pk_dsvc 138 139 ); 139 140 @end example … … 157 158 158 159 @page 159 @subsection def_exc - 160 @subsection def_exc - Define Exception Handler 160 161 161 162 @subheading CALLING SEQUENCE: … … 163 164 @ifset is-C 164 165 @example 165 ER def_exc ( 166 UINT exckind, T_DEXC *pk_dexc 166 ER def_exc( 167 UINT exckind, 168 T_DEXC *pk_dexc 167 169 ); 168 170 @end example -
doc/itron3.0/eventflags.t
r6ff1ac4e reb91a4b 22 22 @item @code{clr_flg} - Clear Eventflag 23 23 @item @code{wai_flg} - Wait on Eventflag 24 @item @code{pol_flg} - Wait for Eventflag 24 @item @code{pol_flg} - Wait for Eventflag(Polling) 25 25 @item @code{twai_flg} - Wait on Eventflag with Timeout 26 26 @item @code{ref_flg} - Reference Eventflag Status … … 44 44 45 45 @page 46 @subsection cre_flg - Create Eventflag 47 48 @subheading CALLING SEQUENCE: 49 50 @ifset is-C 51 @example 52 ER cre_flg ( 53 ID flgid, T_CFLG *pk_cflg 46 @subsection cre_flg - Create Eventflag 47 48 @subheading CALLING SEQUENCE: 49 50 @ifset is-C 51 @example 52 ER cre_flg( 53 ID flgid, 54 T_CFLG *pk_cflg 54 55 ); 55 56 @end example … … 73 74 74 75 @page 75 @subsection del_flg - 76 77 @subheading CALLING SEQUENCE: 78 79 @ifset is-C 80 @example 81 ER del_flg 82 ID flgid76 @subsection del_flg - Delete Eventflag 77 78 @subheading CALLING SEQUENCE: 79 80 @ifset is-C 81 @example 82 ER del_flg( 83 ID flgid 83 84 ); 84 85 @end example … … 102 103 103 104 @page 104 @subsection set_flg - Set Eventflag 105 106 @subheading CALLING SEQUENCE: 107 108 @ifset is-C 109 @example 110 ER set_flg ( 111 ID flgid, UINT setptn 105 @subsection set_flg - Set Eventflag 106 107 @subheading CALLING SEQUENCE: 108 109 @ifset is-C 110 @example 111 ER set_flg( 112 ID flgid, 113 UINT setptn 112 114 ); 113 115 @end example … … 131 133 132 134 @page 133 @subsection clr_flg - Clear Eventflag 134 135 @subheading CALLING SEQUENCE: 136 137 @ifset is-C 138 @example 139 ER clr_flg ( 140 ID flgid, UINT clrptn 135 @subsection clr_flg - Clear Eventflag 136 137 @subheading CALLING SEQUENCE: 138 139 @ifset is-C 140 @example 141 ER clr_flg( 142 ID flgid, 143 UINT clrptn 141 144 ); 142 145 @end example … … 160 163 161 164 @page 162 @subsection wai_flg - Wait on Eventflag with Timeout Wait on Eventflag 163 164 @subheading CALLING SEQUENCE: 165 166 @ifset is-C 167 @example 168 ER wai_flg ( 169 UINT *p_flgptn, ID flgid, UINT waiptn, UINT wfmode ER ercd =twai_flg 165 @subsection wai_flg - Wait on Eventflag 166 167 @subheading CALLING SEQUENCE: 168 169 @ifset is-C 170 @example 171 ER wai_flg( 172 UINT *p_flgptn, 173 ID flgid, 174 UINT waiptn, 175 UINT wfmode 170 176 ); 171 177 @end example … … 189 195 190 196 @page 191 @subsection pol_flg - Wait for Eventflag (Polling) 192 193 @subheading CALLING SEQUENCE: 194 195 @ifset is-C 196 @example 197 ER pol_flg ( 198 UINT *p_flgptn, ID flgid, UINT waiptn, UINT wfmode 197 @subsection pol_flg - Wait for Eventflag(Polling) 198 199 @subheading CALLING SEQUENCE: 200 201 @ifset is-C 202 @example 203 ER pol_flg( 204 UINT *p_flgptn, 205 ID flgid, 206 UINT waiptn, 207 UINT wfmode 199 208 ); 200 209 @end example … … 218 227 219 228 @page 220 @subsection twai_flg - Wait on Eventflag with Timeout 221 222 @subheading CALLING SEQUENCE: 223 224 @ifset is-C 225 @example 226 ER ercd =twai_flg ( 227 UINT *p_flgptn, ID flgid, UINT waiptn, UINT wfmode, 229 @subsection twai_flg - Wait on Eventflag with Timeout 230 231 @subheading CALLING SEQUENCE: 232 233 @ifset is-C 234 @example 235 ER ercd =twai_flg( 236 UINT *p_flgptn, 237 ID flgid, 238 UINT waiptn, 239 UINT wfmode, 228 240 ); 229 241 @end example … … 247 259 248 260 @page 249 @subsection ref_flg - Reference Eventflag Status 250 251 @subheading CALLING SEQUENCE: 252 253 @ifset is-C 254 @example 255 ER ref_flg ( 256 T_RFLG *pk_rflg, ID flgid 257 ); 258 @end example 259 @end ifset 260 261 @ifset is-Ada 262 @end ifset 263 264 @subheading STATUS CODES: 265 266 @code{EXXX} - 267 268 @subheading DESCRIPTION: 269 270 @subheading NOTES: 271 261 @subsection ref_flg - Reference Eventflag Status 262 263 @subheading CALLING SEQUENCE: 264 265 @ifset is-C 266 @example 267 ER ref_flg( 268 T_RFLG *pk_rflg, 269 ID flgid 270 ); 271 @end example 272 @end ifset 273 274 @ifset is-Ada 275 @end ifset 276 277 @subheading STATUS CODES: 278 279 @code{EXXX} - 280 281 @subheading DESCRIPTION: 282 283 @subheading NOTES: 284 -
doc/itron3.0/fixedblock.t
r6ff1ac4e reb91a4b 43 43 44 44 @page 45 @subsection cre_mpf - Create Fixed-Size Memorypool 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER cre_mpf ( 52 ID mpfid, T_CMPF *pk_cmpf 45 @subsection cre_mpf - Create Fixed-Size Memorypool 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER cre_mpf( 52 ID mpfid, 53 T_CMPF *pk_cmpf 53 54 ); 54 55 @end example … … 72 73 73 74 @page 74 @subsection del_mpf - 75 76 @subheading CALLING SEQUENCE: 77 78 @ifset is-C 79 @example 80 ER del_mpf 81 ID mpfid75 @subsection del_mpf - Delete Fixed-Size Memorypool 76 77 @subheading CALLING SEQUENCE: 78 79 @ifset is-C 80 @example 81 ER del_mpf( 82 ID mpfid 82 83 ); 83 84 @end example … … 101 102 102 103 @page 103 @subsection get_blf - Get Fixed-Size Memory Block Poll and Get Fixed-Size Memory Block Get Fixed-Size Memory Block with Timeout 104 105 @subheading CALLING SEQUENCE: 106 107 @ifset is-C 108 @example 109 ER get_blf ( 110 VP *p_blf, ID mpfid ER ercd =pget_blf 104 @subsection get_blf - Get Fixed-Size Memory Block 105 106 @subheading CALLING SEQUENCE: 107 108 @ifset is-C 109 @example 110 ER get_blf( 111 VP *p_blf, 112 ID mpfid 111 113 ); 112 114 @end example … … 130 132 131 133 @page 132 @subsection pget_blf - Poll and Get Fixed-Size Memory Block 133 134 @subheading CALLING SEQUENCE: 135 136 @ifset is-C 137 @example 138 ER ercd =pget_blf ( 139 VP *p_blf, ID mpfid 134 @subsection pget_blf - Poll and Get Fixed-Size Memory Block 135 136 @subheading CALLING SEQUENCE: 137 138 @ifset is-C 139 @example 140 ER ercd =pget_blf( 141 VP *p_blf, 142 ID mpfid 140 143 ); 141 144 @end example … … 159 162 160 163 @page 161 @subsection tget_blf - Get Fixed-Size Memory Block with Timeout 162 163 @subheading CALLING SEQUENCE: 164 165 @ifset is-C 166 @example 167 ER ercd =tget_blf ( 168 VP *p_blf, ID mpfid, TMO tmout 164 @subsection tget_blf - Get Fixed-Size Memory Block with Timeout 165 166 @subheading CALLING SEQUENCE: 167 168 @ifset is-C 169 @example 170 ER ercd =tget_blf( 171 VP *p_blf, 172 ID mpfid, 173 TMO tmout 169 174 ); 170 175 @end example … … 188 193 189 194 @page 190 @subsection rel_blf - Release Fixed-Size Memory Block 191 192 @subheading CALLING SEQUENCE: 193 194 @ifset is-C 195 @example 196 ER rel_blf ( 197 ID mpfid, VP blf 195 @subsection rel_blf - Release Fixed-Size Memory Block 196 197 @subheading CALLING SEQUENCE: 198 199 @ifset is-C 200 @example 201 ER rel_blf( 202 ID mpfid, 203 VP blf 198 204 ); 199 205 @end example … … 217 223 218 224 @page 219 @subsection ref_mpf - Reference Fixed-Size Memorypool Status 220 221 @subheading CALLING SEQUENCE: 222 223 @ifset is-C 224 @example 225 ER ref_mpf ( 226 T_RMPF *pk_rmpf, ID mpfid 227 ); 228 @end example 229 @end ifset 230 231 @ifset is-Ada 232 @end ifset 233 234 @subheading STATUS CODES: 235 236 @code{EXXX} - 237 238 @subheading DESCRIPTION: 239 240 @subheading NOTES: 241 225 @subsection ref_mpf - Reference Fixed-Size Memorypool Status 226 227 @subheading CALLING SEQUENCE: 228 229 @ifset is-C 230 @example 231 ER ref_mpf( 232 T_RMPF *pk_rmpf, 233 ID mpfid 234 ); 235 @end example 236 @end ifset 237 238 @ifset is-Ada 239 @end ifset 240 241 @subheading STATUS CODES: 242 243 @code{EXXX} - 244 245 @subheading DESCRIPTION: 246 247 @subheading NOTES: 248 -
doc/itron3.0/interrupt.t
r6ff1ac4e reb91a4b 24 24 @item @code{dis_int} - Disable Interrupt 25 25 @item @code{ena_int} - Enable Interrupt 26 @item @code{chg_iXX} - Change Interrupt Mask 27 @item @code{ref_iXX} - Reference Interrupt Mask 26 @item @code{chg_iXX} - Change Interrupt Mask(Level or Priority) 27 @item @code{ref_iXX} - Reference Interrupt Mask(Level or Priority) 28 28 @end itemize 29 29 … … 45 45 46 46 @page 47 @subsection def_int - Define Interrupt Handler 48 49 @subheading CALLING SEQUENCE: 50 51 @ifset is-C 52 @example 53 ER def_int ( 54 UINT dintno, T_DINT *pk_dint 47 @subsection def_int - Define Interrupt Handler 48 49 @subheading CALLING SEQUENCE: 50 51 @ifset is-C 52 @example 53 ER def_int( 54 UINT dintno, 55 T_DINT *pk_dint 55 56 ); 56 57 @end example … … 74 75 75 76 @page 76 @subsection ret_int - 77 78 @subheading CALLING SEQUENCE: 79 80 @ifset is-C 81 @example 82 void ret_int 77 @subsection ret_int - Return from Interrupt Handler 78 79 @subheading CALLING SEQUENCE: 80 81 @ifset is-C 82 @example 83 void ret_int( 83 84 84 85 ); … … 103 104 104 105 @page 105 @subsection ret_wup - 106 107 @subheading CALLING SEQUENCE: 108 109 @ifset is-C 110 @example 111 void ret_wup 112 ID tskid106 @subsection ret_wup - Return and Wakeup Task 107 108 @subheading CALLING SEQUENCE: 109 110 @ifset is-C 111 @example 112 void ret_wup( 113 ID tskid 113 114 ); 114 115 @end example … … 132 133 133 134 @page 134 @subsection loc_cpu - 135 136 @subheading CALLING SEQUENCE: 137 138 @ifset is-C 139 @example 140 ER loc_cpu 135 @subsection loc_cpu - Lock CPU 136 137 @subheading CALLING SEQUENCE: 138 139 @ifset is-C 140 @example 141 ER loc_cpu( 141 142 142 143 ); … … 161 162 162 163 @page 163 @subsection unl_cpu - 164 165 @subheading CALLING SEQUENCE: 166 167 @ifset is-C 168 @example 169 ER unl_cpu 164 @subsection unl_cpu - Unlock CPU 165 166 @subheading CALLING SEQUENCE: 167 168 @ifset is-C 169 @example 170 ER unl_cpu( 170 171 171 172 ); … … 190 191 191 192 @page 192 @subsection dis_int - 193 194 @subheading CALLING SEQUENCE: 195 196 @ifset is-C 197 @example 198 ER dis_int 199 UINT eintno193 @subsection dis_int - Disable Interrupt 194 195 @subheading CALLING SEQUENCE: 196 197 @ifset is-C 198 @example 199 ER dis_int( 200 UINT eintno 200 201 ); 201 202 @end example … … 219 220 220 221 @page 221 @subsection ena_int - 222 223 @subheading CALLING SEQUENCE: 224 225 @ifset is-C 226 @example 227 ER ena_int 228 UINT eintno222 @subsection ena_int - Enable Interrupt 223 224 @subheading CALLING SEQUENCE: 225 226 @ifset is-C 227 @example 228 ER ena_int( 229 UINT eintno 229 230 ); 230 231 @end example … … 248 249 249 250 @page 250 @subsection chg_iXX - Change Interrupt Mask(Level or Priority)251 252 @subheading CALLING SEQUENCE: 253 254 @ifset is-C 255 @example 256 ER chg_iXX 257 UINT iXXXX251 @subsection chg_iXX - Change Interrupt Mask(Level or Priority) 252 253 @subheading CALLING SEQUENCE: 254 255 @ifset is-C 256 @example 257 ER chg_iXX( 258 UINT iXXXX 258 259 ); 259 260 @end example … … 277 278 278 279 @page 279 @subsection ref_iXX - Reference Interrupt Mask(Level or Priority)280 281 @subheading CALLING SEQUENCE: 282 283 @ifset is-C 284 @example 285 ER ref_iXX 286 UINT *p_iXXXX287 ); 288 @end example 289 @end ifset 290 291 @ifset is-Ada 292 @end ifset 293 294 @subheading STATUS CODES: 295 296 @code{EXXX} - 297 298 @subheading DESCRIPTION: 299 300 @subheading NOTES: 301 280 @subsection ref_iXX - Reference Interrupt Mask(Level or Priority) 281 282 @subheading CALLING SEQUENCE: 283 284 @ifset is-C 285 @example 286 ER ref_iXX( 287 UINT *p_iXXXX 288 ); 289 @end example 290 @end ifset 291 292 @ifset is-Ada 293 @end ifset 294 295 @subheading STATUS CODES: 296 297 @code{EXXX} - 298 299 @subheading DESCRIPTION: 300 301 @subheading NOTES: 302 -
doc/itron3.0/itron.texi
r6ff1ac4e reb91a4b 98 98 @include config.texi 99 99 @include network.texi 100 @include psxmsg.texi 101 @include psxsem.texi 100 102 @ifinfo 101 103 @node Top, , (dir), (dir) … … 118 120 * System Manager:: 119 121 * Network Support Manager:: 122 * POSIX Message Passing Manager:: 123 * POSIX Semaphores Manager:: 120 124 * Command and Variable Index:: 121 125 * Concept Index:: -
doc/itron3.0/mailbox.t
r6ff1ac4e reb91a4b 43 43 44 44 @page 45 @subsection cre_mbx - Create Mailbox 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER cre_mbx ( 52 ID mbxid, T_CMBX* pk_cmbx 45 @subsection cre_mbx - Create Mailbox 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER cre_mbx( 52 ID mbxid, 53 T_CMBX* pk_cmbx 53 54 ); 54 55 @end example … … 72 73 73 74 @page 74 @subsection del_mbx - 75 76 @subheading CALLING SEQUENCE: 77 78 @ifset is-C 79 @example 80 ER del_mbx 81 ID mbxid75 @subsection del_mbx - Delete Mailbox 76 77 @subheading CALLING SEQUENCE: 78 79 @ifset is-C 80 @example 81 ER del_mbx( 82 ID mbxid 82 83 ); 83 84 @end example … … 101 102 102 103 @page 103 @subsection snd_msg - Send Message to Mailbox 104 105 @subheading CALLING SEQUENCE: 106 107 @ifset is-C 108 @example 109 ER snd_msg ( 110 ID mbxid, T_MSG *pk_msg 104 @subsection snd_msg - Send Message to Mailbox 105 106 @subheading CALLING SEQUENCE: 107 108 @ifset is-C 109 @example 110 ER snd_msg( 111 ID mbxid, 112 T_MSG *pk_msg 111 113 ); 112 114 @end example … … 130 132 131 133 @page 132 @subsection rcv_msg - Poll and Receive Message from Mailbox Receive Message from Mailbox Receive Message from Mailbox with Timeout 133 134 @subheading CALLING SEQUENCE: 135 136 @ifset is-C 137 @example 138 ER rcv_msg ( 139 T_MSG **ppk_msg, ID mbxid ER ercd =prcv_msg 134 @subsection rcv_msg - Receive Message from Mailbox 135 136 @subheading CALLING SEQUENCE: 137 138 @ifset is-C 139 @example 140 ER rcv_msg( 141 T_MSG **ppk_msg, 142 ID mbxid 140 143 ); 141 144 @end example … … 159 162 160 163 @page 161 @subsection prcv_msg - Poll and Receive Message from Mailbox 162 163 @subheading CALLING SEQUENCE: 164 165 @ifset is-C 166 @example 167 ER ercd =prcv_msg ( 168 T_MSG **ppk_msg, ID mbxid 164 @subsection prcv_msg - Poll and Receive Message from Mailbox 165 166 @subheading CALLING SEQUENCE: 167 168 @ifset is-C 169 @example 170 ER ercd =prcv_msg( 171 T_MSG **ppk_msg, 172 ID mbxid 169 173 ); 170 174 @end example … … 188 192 189 193 @page 190 @subsection trcv_msg - Receive Message from Mailbox with Timeout 191 192 @subheading CALLING SEQUENCE: 193 194 @ifset is-C 195 @example 196 ER ercd =trcv_msg ( 197 T_MSG **ppk_msg, ID mbxid, TMO tmout 194 @subsection trcv_msg - Receive Message from Mailbox with Timeout 195 196 @subheading CALLING SEQUENCE: 197 198 @ifset is-C 199 @example 200 ER ercd =trcv_msg( 201 T_MSG **ppk_msg, 202 ID mbxid, 203 TMO tmout 198 204 ); 199 205 @end example … … 217 223 218 224 @page 219 @subsection ref_mbx - Reference Mailbox Status 220 221 @subheading CALLING SEQUENCE: 222 223 @ifset is-C 224 @example 225 ER ref_mbx ( 226 T_RMBX *pk_rmbx, ID mbxid 227 ); 228 @end example 229 @end ifset 230 231 @ifset is-Ada 232 @end ifset 233 234 @subheading STATUS CODES: 235 236 @code{EXXX} - 237 238 @subheading DESCRIPTION: 239 240 @subheading NOTES: 241 225 @subsection ref_mbx - Reference Mailbox Status 226 227 @subheading CALLING SEQUENCE: 228 229 @ifset is-C 230 @example 231 ER ref_mbx( 232 T_RMBX *pk_rmbx, 233 ID mbxid 234 ); 235 @end example 236 @end ifset 237 238 @ifset is-Ada 239 @end ifset 240 241 @subheading STATUS CODES: 242 243 @code{EXXX} - 244 245 @subheading DESCRIPTION: 246 247 @subheading NOTES: 248 -
doc/itron3.0/memorypool.t
r6ff1ac4e reb91a4b 43 43 44 44 @page 45 @subsection cre_mpl - Create Variable-Size Memorypool 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER cre_mpl ( 52 ID mplid, T_CMPL *pk_cmpl 45 @subsection cre_mpl - Create Variable-Size Memorypool 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER cre_mpl( 52 ID mplid, 53 T_CMPL *pk_cmpl 53 54 ); 54 55 @end example … … 72 73 73 74 @page 74 @subsection del_mpl - 75 76 @subheading CALLING SEQUENCE: 77 78 @ifset is-C 79 @example 80 ER del_mpl 81 ID mplid75 @subsection del_mpl - Delete Variable-Size Memorypool 76 77 @subheading CALLING SEQUENCE: 78 79 @ifset is-C 80 @example 81 ER del_mpl( 82 ID mplid 82 83 ); 83 84 @end example … … 101 102 102 103 @page 103 @subsection get_blk - Get Variable-Size Memory Block Poll and Get Variable-Size Memory Block Get Variable-Size Memory Block with Timeout 104 105 @subheading CALLING SEQUENCE: 106 107 @ifset is-C 108 @example 109 ER get_blk ( 110 VP *p_blk, ID mplid, INT blksz ER ercd =pget_blk 104 @subsection get_blk - Get Variable-Size Memory Block 105 106 @subheading CALLING SEQUENCE: 107 108 @ifset is-C 109 @example 110 ER get_blk( 111 VP *p_blk, 112 ID mplid, 113 INT blksz 111 114 ); 112 115 @end example … … 130 133 131 134 @page 132 @subsection pget_blk - Poll and Get Variable-Size Memory Block 133 134 @subheading CALLING SEQUENCE: 135 136 @ifset is-C 137 @example 138 ER ercd =pget_blk ( 139 VP *p_blk, ID mplid, INT blksz 135 @subsection pget_blk - Poll and Get Variable-Size Memory Block 136 137 @subheading CALLING SEQUENCE: 138 139 @ifset is-C 140 @example 141 ER ercd =pget_blk( 142 VP *p_blk, 143 ID mplid, 144 INT blksz 140 145 ); 141 146 @end example … … 159 164 160 165 @page 161 @subsection tget_blk - Get Variable-Size Memory Block with Timeout 162 163 @subheading CALLING SEQUENCE: 164 165 @ifset is-C 166 @example 167 ER ercd =tget_blk ( 168 VP *p_blk, ID mplid, INT blksz, TMO tmout 166 @subsection tget_blk - Get Variable-Size Memory Block with Timeout 167 168 @subheading CALLING SEQUENCE: 169 170 @ifset is-C 171 @example 172 ER ercd =tget_blk( 173 VP *p_blk, 174 ID mplid, 175 INT blksz, 176 TMO tmout 169 177 ); 170 178 @end example … … 188 196 189 197 @page 190 @subsection rel_blk - Release Variable-Size Memory Block 191 192 @subheading CALLING SEQUENCE: 193 194 @ifset is-C 195 @example 196 ER rel_blk ( 197 ID mplid, VP blk 198 @subsection rel_blk - Release Variable-Size Memory Block 199 200 @subheading CALLING SEQUENCE: 201 202 @ifset is-C 203 @example 204 ER rel_blk( 205 ID mplid, 206 VP blk 198 207 ); 199 208 @end example … … 217 226 218 227 @page 219 @subsection ref_mpl - Reference Variable-Size Memorypool Status 220 221 @subheading CALLING SEQUENCE: 222 223 @ifset is-C 224 @example 225 ER ref_mpl ( 226 T_RMPL *pk_rmpl, ID mplid 227 ); 228 @end example 229 @end ifset 230 231 @ifset is-Ada 232 @end ifset 233 234 @subheading STATUS CODES: 235 236 @code{EXXX} - 237 238 @subheading DESCRIPTION: 239 240 @subheading NOTES: 241 228 @subsection ref_mpl - Reference Variable-Size Memorypool Status 229 230 @subheading CALLING SEQUENCE: 231 232 @ifset is-C 233 @example 234 ER ref_mpl( 235 T_RMPL *pk_rmpl, 236 ID mplid 237 ); 238 @end example 239 @end ifset 240 241 @ifset is-Ada 242 @end ifset 243 244 @subheading STATUS CODES: 245 246 @code{EXXX} - 247 248 @subheading DESCRIPTION: 249 250 @subheading NOTES: 251 -
doc/itron3.0/msgbuffer.t
r6ff1ac4e reb91a4b 45 45 46 46 @page 47 @subsection cre_mbf - Create MessageBuffer 48 49 @subheading CALLING SEQUENCE: 50 51 @ifset is-C 52 @example 53 ER cre_mbf ( 54 ID mbfid, T_CMBF *pk_cmbf 47 @subsection cre_mbf - Create MessageBuffer 48 49 @subheading CALLING SEQUENCE: 50 51 @ifset is-C 52 @example 53 ER cre_mbf( 54 ID mbfid, 55 T_CMBF *pk_cmbf 55 56 ); 56 57 @end example … … 74 75 75 76 @page 76 @subsection del_mbf - 77 78 @subheading CALLING SEQUENCE: 79 80 @ifset is-C 81 @example 82 ER del_mbf 83 ID mbfid77 @subsection del_mbf - Delete MessageBuffer 78 79 @subheading CALLING SEQUENCE: 80 81 @ifset is-C 82 @example 83 ER del_mbf( 84 ID mbfid 84 85 ); 85 86 @end example … … 103 104 104 105 @page 105 @subsection snd_mbf - Poll and Send Message to MessageBuffer Send Message to MessageBuffer Send Message to MessageBuffer with Timeout 106 107 @subheading CALLING SEQUENCE: 108 109 @ifset is-C 110 @example 111 ER snd_mbf ( 112 ID mbfid, VP msg, INT msgsz ER ercd =psnd_mbf 106 @subsection snd_mbf - Send Message to MessageBuffer 107 108 @subheading CALLING SEQUENCE: 109 110 @ifset is-C 111 @example 112 ER snd_mbf( 113 ID mbfid, 114 VP msg, 115 INT msgsz 113 116 ); 114 117 @end example … … 132 135 133 136 @page 134 @subsection psnd_mbf - Poll and Send Message to MessageBuffer 135 136 @subheading CALLING SEQUENCE: 137 138 @ifset is-C 139 @example 140 ER ercd =psnd_mbf ( 141 ID mbfid, VP msg, INT msgsz 137 @subsection psnd_mbf - Poll and Send Message to MessageBuffer 138 139 @subheading CALLING SEQUENCE: 140 141 @ifset is-C 142 @example 143 ER ercd =psnd_mbf( 144 ID mbfid, 145 VP msg, 146 INT msgsz 142 147 ); 143 148 @end example … … 161 166 162 167 @page 163 @subsection tsnd_mbf - Send Message to MessageBuffer with Timeout 164 165 @subheading CALLING SEQUENCE: 166 167 @ifset is-C 168 @example 169 ER ercd =tsnd_mbf ( 170 ID mbfid, VP msg, INT msgsz, TMO tmout 168 @subsection tsnd_mbf - Send Message to MessageBuffer with Timeout 169 170 @subheading CALLING SEQUENCE: 171 172 @ifset is-C 173 @example 174 ER ercd =tsnd_mbf( 175 ID mbfid, 176 VP msg, 177 INT msgsz, 178 TMO tmout 171 179 ); 172 180 @end example … … 190 198 191 199 @page 192 @subsection rcv_mbf - Poll and Receive Message from MessageBuffer Receive Message from MessageBuffer Receive Message from MessageBuffer with Timeout 193 194 @subheading CALLING SEQUENCE: 195 196 @ifset is-C 197 @example 198 ER rcv_mbf ( 199 VP msg, INT *p_msgsz, ID mbfid ER ercd =prcv_mbf 200 @subsection rcv_mbf - Receive Message from MessageBuffer 201 202 @subheading CALLING SEQUENCE: 203 204 @ifset is-C 205 @example 206 ER rcv_mbf( 207 VP msg, 208 INT *p_msgsz, 209 ID mbfid 200 210 ); 201 211 @end example … … 219 229 220 230 @page 221 @subsection prcv_mbf - Poll and Receive Message from MessageBuffer 222 223 @subheading CALLING SEQUENCE: 224 225 @ifset is-C 226 @example 227 ER ercd =prcv_mbf ( 228 VP msg, INT *p_msgsz, ID mbfid 231 @subsection prcv_mbf - Poll and Receive Message from MessageBuffer 232 233 @subheading CALLING SEQUENCE: 234 235 @ifset is-C 236 @example 237 ER ercd =prcv_mbf( 238 VP msg, 239 INT *p_msgsz, 240 ID mbfid 229 241 ); 230 242 @end example … … 248 260 249 261 @page 250 @subsection trcv_mbf - Receive Message from MessageBuffer with Timeout 251 252 @subheading CALLING SEQUENCE: 253 254 @ifset is-C 255 @example 256 ER ercd =trcv_mbf ( 257 VP msg, INT *p_msgsz, ID mbfid, TMO tmout 262 @subsection trcv_mbf - Receive Message from MessageBuffer with Timeout 263 264 @subheading CALLING SEQUENCE: 265 266 @ifset is-C 267 @example 268 ER ercd =trcv_mbf( 269 VP msg, 270 INT *p_msgsz, 271 ID mbfid, 272 TMO tmout 258 273 ); 259 274 @end example … … 277 292 278 293 @page 279 @subsection ref_mbf - Reference MessageBuffer Status 280 281 @subheading CALLING SEQUENCE: 282 283 @ifset is-C 284 @example 285 ER ref_mbf ( 286 T_RMBF *pk_rmbf, ID mbfid 287 ); 288 @end example 289 @end ifset 290 291 @ifset is-Ada 292 @end ifset 293 294 @subheading STATUS CODES: 295 296 @code{EXXX} - 297 298 @subheading DESCRIPTION: 299 300 @subheading NOTES: 301 294 @subsection ref_mbf - Reference MessageBuffer Status 295 296 @subheading CALLING SEQUENCE: 297 298 @ifset is-C 299 @example 300 ER ref_mbf( 301 T_RMBF *pk_rmbf, 302 ID mbfid 303 ); 304 @end example 305 @end ifset 306 307 @ifset is-Ada 308 @end ifset 309 310 @subheading STATUS CODES: 311 312 @code{EXXX} - 313 314 @subheading DESCRIPTION: 315 316 @subheading NOTES: 317 -
doc/itron3.0/network.t
r6ff1ac4e reb91a4b 40 40 41 41 @page 42 @subsection nrea_dat - 42 @subsection nrea_dat - Read Data from another Node 43 43 44 44 @subheading CALLING SEQUENCE: … … 46 46 @ifset is-C 47 47 @example 48 ER nrea_dat ( 49 INT *p_reasz, VP dstadr, NODE srcnode, VP srcadr, 48 ER nrea_dat( 49 INT *p_reasz, 50 VP dstadr, 51 NODE srcnode, 52 VP srcadr, 50 53 ); 51 54 @end example … … 69 72 70 73 @page 71 @subsection nwri_dat - 74 @subsection nwri_dat - Write Data to another Node 72 75 73 76 @subheading CALLING SEQUENCE: … … 75 78 @ifset is-C 76 79 @example 77 ER nwri_dat ( 78 INT *p_wrisz, NODE dstnode, VP dstadr, VP srcadr, 80 ER nwri_dat( 81 INT *p_wrisz, 82 NODE dstnode, 83 VP dstadr, 84 VP srcadr, 79 85 ); 80 86 @end example … … 98 104 99 105 @page 100 @subsection nget_nod - 106 @subsection nget_nod - Get Local Node Number 101 107 102 108 @subheading CALLING SEQUENCE: … … 104 110 @ifset is-C 105 111 @example 106 ER nget_nod 107 NODE *p_node112 ER nget_nod( 113 NODE *p_node 108 114 ); 109 115 @end example … … 127 133 128 134 @page 129 @subsection nget_ver - 135 @subsection nget_ver - Get Version Information of another Node 130 136 131 137 @subheading CALLING SEQUENCE: … … 133 139 @ifset is-C 134 140 @example 135 ER nget_ver ( 136 T_VER *pk_ver, NODE node 141 ER nget_ver( 142 T_VER *pk_ver, 143 NODE node 137 144 ); 138 145 @end example -
doc/itron3.0/rendezvous.t
r6ff1ac4e reb91a4b 47 47 48 48 @page 49 @subsection cre_por - Create Port for Rendezvous 50 51 @subheading CALLING SEQUENCE: 52 53 @ifset is-C 54 @example 55 ER cre_por ( 56 ID porid, T_CPOR *pk_cpor 49 @subsection cre_por - Create Port for Rendezvous 50 51 @subheading CALLING SEQUENCE: 52 53 @ifset is-C 54 @example 55 ER cre_por( 56 ID porid, 57 T_CPOR *pk_cpor 57 58 ); 58 59 @end example … … 76 77 77 78 @page 78 @subsection del_por - 79 80 @subheading CALLING SEQUENCE: 81 82 @ifset is-C 83 @example 84 ER del_por 85 ID porid79 @subsection del_por - Delete Port for Rendezvous 80 81 @subheading CALLING SEQUENCE: 82 83 @ifset is-C 84 @example 85 ER del_por( 86 ID porid 86 87 ); 87 88 @end example … … 105 106 106 107 @page 107 @subsection cal_por - Call Port for Rendezvous Poll and Call Port for Rendezvous Call Port for Rendezvous with Timeout 108 109 @subheading CALLING SEQUENCE: 110 111 @ifset is-C 112 @example 113 ER cal_por ( 114 VP msg, INT *p_rmsgsz, ID porid, UINT calptn, INT ER ercd =pcal_por 108 @subsection cal_por - Call Port for Rendezvous Poll 109 110 @subheading CALLING SEQUENCE: 111 112 @ifset is-C 113 @example 114 ER cal_por( 115 VP msg, 116 INT *p_rmsgsz, 117 ID porid, 118 UINT calptn 115 119 ); 116 120 @end example … … 134 138 135 139 @page 136 @subsection pcal_por - Poll and Call Port for Rendezvous 137 138 @subheading CALLING SEQUENCE: 139 140 @ifset is-C 141 @example 142 ER ercd =pcal_por ( 143 VP msg, INT *p_rmsgsz, ID porid, UINT calptn, INT 140 @subsection pcal_por - Poll and Call Port for Rendezvous 141 142 @subheading CALLING SEQUENCE: 143 144 @ifset is-C 145 @example 146 ER ercd =pcal_por( 147 VP msg, 148 INT *p_rmsgsz, 149 ID porid, 150 UINT calptn, 151 INT 144 152 ); 145 153 @end example … … 163 171 164 172 @page 165 @subsection tcal_por - Call Port for Rendezvous with Timeout 166 167 @subheading CALLING SEQUENCE: 168 169 @ifset is-C 170 @example 171 ER ercd =tcal_por ( 172 VP msg, INT *p_rmsgsz, ID porid, UINT calptn, INT 173 @subsection tcal_por - Call Port for Rendezvous with Timeout 174 175 @subheading CALLING SEQUENCE: 176 177 @ifset is-C 178 @example 179 ER ercd =tcal_por( 180 VP msg, 181 INT *p_rmsgsz, 182 ID porid, 183 UINT calptn, 184 INT 173 185 ); 174 186 @end example … … 192 204 193 205 @page 194 @subsection acp_por - Accept Port for Rendezvous Poll and Accept Port for Rendezvous Accept Port for Rendezvous with Timeout 195 196 @subheading CALLING SEQUENCE: 197 198 @ifset is-C 199 @example 200 ER acp_por ( 201 RNO *p_rdvno, VP msg, INT *p_cmsgsz, ID porid, UINT ER ercd =pacp_por 206 @subsection acp_por - Accept Port for Rendezvous Poll 207 208 @subheading CALLING SEQUENCE: 209 210 @ifset is-C 211 @example 212 ER acp_por( 213 RNO *p_rdvno, 214 VP msg, 215 INT *p_cmsgsz, 216 ID porid 202 217 ); 203 218 @end example … … 221 236 222 237 @page 223 @subsection pacp_por - Poll and Accept Port for Rendezvous 224 225 @subheading CALLING SEQUENCE: 226 227 @ifset is-C 228 @example 229 ER ercd =pacp_por ( 230 RNO *p_rdvno, VP msg, INT *p_cmsgsz, ID porid, UINT 238 @subsection pacp_por - Poll and Accept Port for Rendezvous 239 240 @subheading CALLING SEQUENCE: 241 242 @ifset is-C 243 @example 244 ER ercd =pacp_por( 245 RNO *p_rdvno, 246 VP msg, 247 INT *p_cmsgsz, 248 ID porid, 249 UINT 231 250 ); 232 251 @end example … … 250 269 251 270 @page 252 @subsection tacp_por - Accept Port for Rendezvous with Timeout 253 254 @subheading CALLING SEQUENCE: 255 256 @ifset is-C 257 @example 258 ER ercd =tacp_por ( 259 RNO *p_rdvno, VP msg, INT *p_cmsgsz, ID porid, UINT 271 @subsection tacp_por - Accept Port for Rendezvous with Timeout 272 273 @subheading CALLING SEQUENCE: 274 275 @ifset is-C 276 @example 277 ER ercd =tacp_por( 278 RNO *p_rdvno, 279 VP msg, 280 INT *p_cmsgsz, 281 ID porid, 282 UINT 260 283 ); 261 284 @end example … … 279 302 280 303 @page 281 @subsection fwd_por - Forward Rendezvous to Other Port 282 283 @subheading CALLING SEQUENCE: 284 285 @ifset is-C 286 @example 287 ER fwd_por ( 288 ID porid, UINT calptn, RNO rdvno, VP msg, INT cmsgsz 304 @subsection fwd_por - Forward Rendezvous to Other Port 305 306 @subheading CALLING SEQUENCE: 307 308 @ifset is-C 309 @example 310 ER fwd_por( 311 ID porid, 312 UINT calptn, 313 RNO rdvno, 314 VP msg, 315 INT cmsgsz 289 316 ); 290 317 @end example … … 308 335 309 336 @page 310 @subsection rpl_rdv - Reply Rendezvous 311 312 @subheading CALLING SEQUENCE: 313 314 @ifset is-C 315 @example 316 ER rpl_rdv ( 317 RNO rdvno, VP msg, INT rmsgsz 337 @subsection rpl_rdv - Reply Rendezvous 338 339 @subheading CALLING SEQUENCE: 340 341 @ifset is-C 342 @example 343 ER rpl_rdv( 344 RNO rdvno, 345 VP msg, 346 INT rmsgsz 318 347 ); 319 348 @end example … … 337 366 338 367 @page 339 @subsection ref_por - Reference Port Status 340 341 @subheading CALLING SEQUENCE: 342 343 @ifset is-C 344 @example 345 ER ref_por ( 346 T_RPOR *pk_rpor, ID porid 347 ); 348 @end example 349 @end ifset 350 351 @ifset is-Ada 352 @end ifset 353 354 @subheading STATUS CODES: 355 356 @code{EXXX} - 357 358 @subheading DESCRIPTION: 359 360 @subheading NOTES: 361 368 @subsection ref_por - Reference Port Status 369 370 @subheading CALLING SEQUENCE: 371 372 @ifset is-C 373 @example 374 ER ref_por( 375 T_RPOR *pk_rpor, 376 ID porid 377 ); 378 @end example 379 @end ifset 380 381 @ifset is-Ada 382 @end ifset 383 384 @subheading STATUS CODES: 385 386 @code{EXXX} - 387 388 @subheading DESCRIPTION: 389 390 @subheading NOTES: 391 -
doc/itron3.0/tasksync.t
r6ff1ac4e reb91a4b 43 43 44 44 @page 45 @subsection sus_tsk - 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER sus_tsk 52 ID tskid45 @subsection sus_tsk - Suspend Other Task 46 47 @subheading CALLING SEQUENCE: 48 49 @ifset is-C 50 @example 51 ER sus_tsk( 52 ID tskid 53 53 ); 54 54 @end example … … 72 72 73 73 @page 74 @subsection rsm_tsk - Forcibly Resume Suspended TaskResume Suspended Task75 76 @subheading CALLING SEQUENCE: 77 78 @ifset is-C 79 @example 80 ER rsm_tsk 81 ID tskid ER ercd =frsm_tsk74 @subsection rsm_tsk - Resume Suspended Task 75 76 @subheading CALLING SEQUENCE: 77 78 @ifset is-C 79 @example 80 ER rsm_tsk( 81 ID tskid 82 82 ); 83 83 @end example … … 101 101 102 102 @page 103 @subsection frsm_tsk - 104 105 @subheading CALLING SEQUENCE: 106 107 @ifset is-C 108 @example 109 ER ercd =frsm_tsk 110 ID tskid103 @subsection frsm_tsk - Forcibly Resume Suspended Task 104 105 @subheading CALLING SEQUENCE: 106 107 @ifset is-C 108 @example 109 ER ercd =frsm_tsk( 110 ID tskid 111 111 ); 112 112 @end example … … 130 130 131 131 @page 132 @subsection slp_tsk - Sleep Task Sleep Task with Timeout 133 134 @subheading CALLING SEQUENCE: 135 136 @ifset is-C 137 @example 138 ER slp_tsk ( 139 ER ercd =tslp_tsk 140 ); 132 @subsection slp_tsk - Sleep Task Sleep Task with Timeout 133 134 @subheading CALLING SEQUENCE: 135 136 @ifset is-C 137 @example 138 ER slp_tsk( void ); 141 139 @end example 142 140 @end ifset … … 159 157 @c 160 158 161 @ subsection tslp_tsk - Sleep Task with Timeout159 @page 162 160 @subsection tslp_tsk - Sleep Task with Timeout 163 161 … … 165 163 166 164 @ifset is-C 167 ER ercd =tslp_tsk ( 168 TMO tmout 165 @example 166 ER ercd =tslp_tsk( 169 167 TMO tmout 170 168 ); … … 188 186 @c 189 187 190 @ subsection wup_tsk - Wakeup Other Task188 @page 191 189 @subsection wup_tsk - Wakeup Other Task 192 190 … … 194 192 195 193 @ifset is-C 196 ER wup_tsk ( 197 ID tskid 194 @example 195 ER wup_tsk( 198 196 ID tskid 199 197 ); … … 217 215 @c 218 216 219 @ subsection can_wup - Cancel Wakeup Request217 @page 220 218 @subsection can_wup - Cancel Wakeup Request 221 219 … … 223 221 224 222 @ifset is-C 225 ER can_wup ( 226 INT *p_wupcnt, ID tskid 223 @example 224 ER can_wup( 225 INT *p_wupcnt, 227 226 ID tskid 228 227 ); -
doc/itron3.0/time.t
r6ff1ac4e reb91a4b 45 45 46 46 @page 47 @subsection get_tim - 48 49 @subheading CALLING SEQUENCE: 50 51 @ifset is-C 52 @example 53 ER get_tim 54 SYSTIME *pk_tim47 @subsection get_tim - Get System Clock 48 49 @subheading CALLING SEQUENCE: 50 51 @ifset is-C 52 @example 53 ER get_tim( 54 SYSTIME *pk_tim 55 55 ); 56 56 @end example … … 74 74 75 75 @page 76 @subsection set_tim - 77 78 @subheading CALLING SEQUENCE: 79 80 @ifset is-C 81 @example 82 ER set_tim 83 SYSTIME *pk_tim76 @subsection set_tim - Set System Clock 77 78 @subheading CALLING SEQUENCE: 79 80 @ifset is-C 81 @example 82 ER set_tim( 83 SYSTIME *pk_tim 84 84 ); 85 85 @end example … … 103 103 104 104 @page 105 @subsection dly_tsk - 106 107 @subheading CALLING SEQUENCE: 108 109 @ifset is-C 110 @example 111 ER dly_tsk 112 DLYTIME dlytim105 @subsection dly_tsk - Delay Task 106 107 @subheading CALLING SEQUENCE: 108 109 @ifset is-C 110 @example 111 ER dly_tsk( 112 DLYTIME dlytim 113 113 ); 114 114 @end example … … 132 132 133 133 @page 134 @subsection def_cyc - Define Cyclic Handler 135 136 @subheading CALLING SEQUENCE: 137 138 @ifset is-C 139 @example 140 ER def_cyc ( 141 HNO cycno, T_DCYC *pk_dcyc 134 @subsection def_cyc - Define Cyclic Handler 135 136 @subheading CALLING SEQUENCE: 137 138 @ifset is-C 139 @example 140 ER def_cyc( 141 HNO cycno, 142 T_DCYC *pk_dcyc 142 143 ); 143 144 @end example … … 161 162 162 163 @page 163 @subsection act_cyc - Activate Cyclic Handler 164 165 @subheading CALLING SEQUENCE: 166 167 @ifset is-C 168 @example 169 ER act_cyc ( 170 HNO cycno, UINT cycact 164 @subsection act_cyc - Activate Cyclic Handler 165 166 @subheading CALLING SEQUENCE: 167 168 @ifset is-C 169 @example 170 ER act_cyc( 171 HNO cycno, 172 UINT cycact 171 173 ); 172 174 @end example … … 190 192 191 193 @page 192 @subsection ref_cyc - Reference Cyclic Handler Status 193 194 @subheading CALLING SEQUENCE: 195 196 @ifset is-C 197 @example 198 ER ref_cyc ( 199 T_RCYC *pk_rcyc, HNO cycno 194 @subsection ref_cyc - Reference Cyclic Handler Status 195 196 @subheading CALLING SEQUENCE: 197 198 @ifset is-C 199 @example 200 ER ref_cyc( 201 T_RCYC *pk_rcyc, 202 HNO cycno 200 203 ); 201 204 @end example … … 219 222 220 223 @page 221 @subsection def_alm - Define Alarm Handler 222 223 @subheading CALLING SEQUENCE: 224 225 @ifset is-C 226 @example 227 ER def_alm ( 228 HNO almno, T_DALM *pk_dalm 224 @subsection def_alm - Define Alarm Handler 225 226 @subheading CALLING SEQUENCE: 227 228 @ifset is-C 229 @example 230 ER def_alm( 231 HNO almno, 232 T_DALM *pk_dalm 229 233 ); 230 234 @end example … … 248 252 249 253 @page 250 @subsection ref_alm - Reference Alarm Handler Status 251 252 @subheading CALLING SEQUENCE: 253 254 @ifset is-C 255 @example 256 ER ref_alm ( 257 T_RALM *pk_ralm, HNO almno 254 @subsection ref_alm - Reference Alarm Handler Status 255 256 @subheading CALLING SEQUENCE: 257 258 @ifset is-C 259 @example 260 ER ref_alm( 261 T_RALM *pk_ralm, 262 HNO almno 258 263 ); 259 264 @end example … … 277 282 278 283 @page 279 @subsection ret_tmr - 280 281 @subheading CALLING SEQUENCE: 282 283 @ifset is-C 284 @example 285 void ret_tmr 286 287 ); 288 @end example 289 @end ifset 290 291 @ifset is-Ada 292 @end ifset 293 294 @subheading STATUS CODES: 295 296 @code{EXXX} - 297 298 @subheading DESCRIPTION: 299 300 @subheading NOTES: 301 284 @subsection ret_tmr - Return from Timer Handler 285 286 @subheading CALLING SEQUENCE: 287 288 @ifset is-C 289 @example 290 void ret_tmr( 291 292 ); 293 @end example 294 @end ifset 295 296 @ifset is-Ada 297 @end ifset 298 299 @subheading STATUS CODES: 300 301 @code{EXXX} - 302 303 @subheading DESCRIPTION: 304 305 @subheading NOTES: 306
Note: See TracChangeset
for help on using the changeset viewer.