Changeset 1b03eed in rtems
- Timestamp:
- 10/26/07 21:34:57 (15 years ago)
- Branches:
- 4.8
- Children:
- 8294a5d9
- Parents:
- c4215ba
- Location:
- doc/user
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/user/barrier.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 363 363 364 364 @ifset is-C 365 @findex rtems_barrier_ obtain366 @example 367 rtems_status_code rtems_barrier_ obtain(365 @findex rtems_barrier_wait 366 @example 367 rtems_status_code rtems_barrier_wait( 368 368 rtems_id id, 369 369 rtems_unsigned32 option_set, … … 375 375 @ifset is-Ada 376 376 @example 377 procedure Barrier_ Obtain(377 procedure Barrier_Wait ( 378 378 ID : in RTEMS.ID; 379 379 Option_Set : in RTEMS.Option; -
doc/user/clock.t
rc4215ba r1b03eed 352 352 @item @code{@value{RPREFIX}CLOCK_GET_TOD} - (rtems_time_of_day *) 353 353 354 @item @code{@value{RPREFIX}CLOCK_GET_SECONDS_SINCE_EPOCH} - (rtems_interval *) 355 356 @item @code{@value{RPREFIX}CLOCK_GET_TICKS_SINCE_BOOT} - (rtems_interval *) 357 358 @item @code{@value{RPREFIX}CLOCK_GET_TICKS_PER_SECOND} - (rtems_interval *) 359 354 360 @item @code{@value{RPREFIX}CLOCK_GET_TIME_VALUE} - (rtems_clock_time_value *) 355 361 356 @item @code{@value{RPREFIX}CLOCK_GET_TICKS_SINCE_BOOT} - (rtems_interval *)357 358 @item @code{@value{RPREFIX}CLOCK_GET_SECONDS_SINCE_EPOCH} - (rtems_interval *)359 360 @item @code{@value{RPREFIX}CLOCK_GET_TICKS_PER_SECOND} - (rtems_interval *)361 362 362 @end itemize 363 363 @end ifset … … 365 365 @ifset is-Ada 366 366 @itemize @bullet 367 @item @code{@value{RPREFIX}C LOCK_GET_TOD} - Address of an variable of367 @item @code{@value{RPREFIX}Clock_Get_TOD} - Address of an variable of 368 368 type RTEMS.Time_Of_Day 369 369 370 @item @code{@value{RPREFIX}CLOCK_GET_TIME_VALUE} - Address of an variable of 370 @item @code{@value{RPREFIX}Clock_Get_Seconds_Since_Epoch} - Address of an 371 variable of type RTEMS.Interval 372 373 @item @code{@value{RPREFIX}Clock_Get_Ticks_Since_Boot} - Address of an 374 variable of type RTEMS.Interval 375 376 @item @code{@value{RPREFIX}Clock_Get_Ticks_Per_Second} - Address of an 377 variable of type RTEMS.Interval 378 379 @item @code{@value{RPREFIX}Clock_Get_Time_Value} - Address of an variable of 371 380 type RTEMS.Clock_Time_Value 372 373 @item @code{@value{RPREFIX}CLOCK_GET_TICKS_SINCE_BOOT} - Address of an374 variable of type RTEMS.Interval375 376 @item @code{@value{RPREFIX}CLOCK_GET_SECONDS_SINCE_EPOCH} - Address of an377 variable of type RTEMS.Interval378 379 @item @code{@value{RPREFIX}CLOCK_GET_TICKS_PER_SECOND} - Address of an380 variable of type RTEMS.Interval381 381 382 382 @end itemize … … 448 448 @c 449 449 @page 450 @subsection CLOCK_GET_UPTIME - Get the time since boo y450 @subsection CLOCK_GET_UPTIME - Get the time since boot 451 451 452 452 @cindex clock get uptime … … 466 466 @ifset is-Ada 467 467 @example 468 NOT SUPPORTED FROM Ada BINDING 468 procedure Clock_Get_Uptime ( 469 Uptime : out RTEMS.Timespec; 470 Result : out RTEMS.Status_Codes 471 ); 469 472 @end example 470 473 @end ifset … … 504 507 @ifset is-Ada 505 508 @example 506 NOT SUPPORTED FROM Ada BINDING 509 procedure Clock_Tick ( 510 Result : out RTEMS.Status_Codes 511 ); 507 512 @end example 508 513 @end ifset -
doc/user/concepts.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 60 60 called "LITE". The @code{@value{DIRPREFIX}build_name} routine 61 61 is provided to build an object name from four ASCII characters. 62 The following example illustrates this: 63 62 64 @ifset is-C 63 The following example illustrates this:64 65 65 @example 66 66 rtems_object_name my_name; 67 67 68 68 my_name = rtems_build_name( 'L', 'I', 'T', 'E' ); 69 @end example 70 @end ifset 71 72 @ifset is-Ada 73 @example 74 My_Name : RTEMS.Name; 75 76 My_Name = RTEMS.Build_Name( 'L', 'I', 'T', 'E' ); 69 77 @end example 70 78 @end ifset … … 77 85 one-hundred, respectively. 78 86 87 @ifset is-C 79 88 @findex rtems_get_object_name 80 89 … … 83 92 its ID. This routine attempts to convert the name into a printable string. 84 93 85 @ifset is-C86 94 The following example illustrates the use of this method to print 87 95 an object name: -
doc/user/cpuuse.t
rc4215ba r1b03eed 115 115 @ifset is-Ada 116 116 @example 117 An Ada interface is not currently available. 117 procedure CPU_Usage_Report; 118 118 @end example 119 119 @end ifset … … 143 143 @ifset is-Ada 144 144 @example 145 An Ada interface is not currently available. 145 procedure CPU_Usage_Reset; 146 146 @end example 147 147 @end ifset -
doc/user/init.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 209 209 @ifset is-Ada 210 210 @example 211 procedure Initialize_Executive ( 212 Configuration_Table : in RTEMS.Configuration_Table_Pointer; 213 CPU_Table : in RTEMS.CPU_Table_Pointer 214 ); 211 NOT SUPPORTED FROM Ada BINDING 215 212 @end example 216 213 @end ifset … … 275 272 @ifset is-Ada 276 273 @example 277 procedure Initialize_Executive_Early( 278 Configuration_Table : in RTEMS.Configuration_Table_Pointer; 279 CPU_Table : in RTEMS.Cpu_Table; 280 Level : out RTEMS.ISR_Level 281 ); 274 NOT SUPPORTED FROM Ada BINDING 282 275 @end example 283 276 @end ifset … … 322 315 @findex rtems_initialize_executive_late 323 316 @example 324 void rtems_initialize_executive_late( 325 rtems_interrupt_level bsp_level 326 ); 317 NOT SUPPORTED FROM Ada BINDING 327 318 @end example 328 319 @end ifset … … 391 382 @example 392 383 procedure Shutdown_Executive( 393 result: in RTEMS.Unsigned32384 Status : in RTEMS.Unsigned32 394 385 ); 395 386 @end example -
doc/user/intr.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 67 67 @ifset is-Ada 68 68 @example 69 procedure User_ISR ( 70 vector : in RTEMS.Vector_Number 71 ); 69 NOT SUPPORTED FROM Ada BINDING 72 70 @end example 73 71 @end ifset … … 262 260 @ifset is-Ada 263 261 @example 264 procedure Interrupt_Catch ( 265 New_ISR_handler : in RTEMS.Address; 266 Vector : in RTEMS.Vector_Number; 267 Old_ISR_Handler : out RTEMS.Address; 268 Result : out RTEMS.Status_Codes 269 ); 262 NOT SUPPORTED FROM Ada BINDING 270 263 @end example 271 264 @end ifset … … 314 307 @ifset is-Ada 315 308 @example 316 function Interrupt_Disable 317 return RTEMS.ISR_Level; 309 function Interrupt_Disable return RTEMS.ISR_Level; 318 310 @end example 319 311 @end ifset … … 447 439 @ifset is-Ada 448 440 @example 449 function Interrupt_Is_In_Progress 450 return RTEMS.Boolean; 441 function Interrupt_Is_In_Progress return RTEMS.Boolean; 451 442 @end example 452 443 @end ifset -
doc/user/io.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 169 169 @ifset is-Ada 170 170 @example 171 function IO_Entry ( 172 Major : in RTEMS.Device_Major_Number; 173 Minor : in RTEMS.Device_Major_Number; 174 Argument_Block : in RTEMS.Address 175 ) return RTEMS.Status_Code; 171 NOT SUPPORTED FROM Ada BINDING 176 172 @end example 177 173 @end ifset … … 270 266 @ifset is-Ada 271 267 @example 272 N o Ada implementation.268 NOT SUPPORTED FROM Ada BINDING 273 269 @end example 274 270 @end ifset … … 327 323 @ifset is-Ada 328 324 @example 329 N o Ada implementation.325 NOT SUPPORTED FROM Ada BINDING 330 326 @end example 331 327 @end ifset … … 367 363 @ifset is-Ada 368 364 @example 369 procedure IO_Initialize ( 370 Major : in RTEMS.Device_Major_Number; 371 Minor : in RTEMS.Device_Minor_Number; 372 Argument : in RTEMS.Address; 373 Result : out RTEMS.Status_Codes 374 ); 365 NOT SUPPORTED FROM Ada BINDING 375 366 @end example 376 367 @end ifset … … 422 413 @ifset is-Ada 423 414 @example 424 procedure IO_Register_Name ( 425 Name : in String; 426 Major : in RTEMS.Device_Major_Number; 427 Minor : in RTEMS.Device_Minor_Number; 428 Result : out RTEMS.Status_Codes 429 ); 415 NOT SUPPORTED FROM Ada BINDING 430 416 @end example 431 417 @end ifset … … 467 453 @ifset is-Ada 468 454 @example 469 procedure IO_Lookup_Name ( 470 Name : in String; 471 Device_Info : out RTEMS.Driver_Name_t_Pointer; 472 Result : out RTEMS.Status_Codes 473 ); 455 NOT SUPPORTED FROM Ada BINDING 474 456 @end example 475 457 @end ifset … … 512 494 @ifset is-Ada 513 495 @example 514 procedure IO_Open ( 515 Major : in RTEMS.Device_Major_Number; 516 Minor : in RTEMS.Device_Minor_Number; 517 Argument : in RTEMS.Address; 518 Result : out RTEMS.Status_Codes 519 ); 496 NOT SUPPORTED FROM Ada BINDING 520 497 @end example 521 498 @end ifset … … 561 538 @ifset is-Ada 562 539 @example 563 procedure IO_Close ( 564 Major : in RTEMS.Device_Major_Number; 565 Minor : in RTEMS.Device_Minor_Number; 566 Argument : in RTEMS.Address; 567 Result : out RTEMS.Status_Codes 568 ); 540 NOT SUPPORTED FROM Ada BINDING 569 541 @end example 570 542 @end ifset … … 610 582 @ifset is-Ada 611 583 @example 612 procedure IO_Read ( 613 Major : in RTEMS.Device_Major_Number; 614 Minor : in RTEMS.Device_Minor_Number; 615 Argument : in RTEMS.Address; 616 Result : out RTEMS.Status_Codes 617 ); 584 NOT SUPPORTED FROM Ada BINDING 618 585 @end example 619 586 @end ifset … … 660 627 @ifset is-Ada 661 628 @example 662 procedure IO_Write ( 663 Major : in RTEMS.Device_Major_Number; 664 Minor : in RTEMS.Device_Minor_Number; 665 Argument : in RTEMS.Address; 666 Result : out RTEMS.Status_Codes 667 ); 629 NOT SUPPORTED FROM Ada BINDING 668 630 @end example 669 631 @end ifset … … 711 673 @ifset is-Ada 712 674 @example 713 procedure IO_Control ( 714 Major : in RTEMS.Device_Major_Number; 715 Minor : in RTEMS.Device_Minor_Number; 716 Argument : in RTEMS.Address; 717 Result : out RTEMS.Status_Codes 718 ); 675 NOT SUPPORTED FROM Ada BINDING 719 676 @end example 720 677 @end ifset -
doc/user/mp.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 314 314 @ifset is-Ada 315 315 @example 316 procedure User_MPCI_Initialization ( 317 Configuration : in RTEMS.Configuration_Table_Pointer 318 ); 316 NOT SUPPORTED FROM Ada BINDING 319 317 @end example 320 318 @end ifset … … 352 350 @ifset is-Ada 353 351 @example 354 procedure User_MPCI_Get_Packet ( 355 Packet : access RTEMS.Packet_Prefix_Pointer 356 ); 352 NOT SUPPORTED FROM Ada BINDING 357 353 @end example 358 354 @end ifset … … 389 385 @ifset is-Ada 390 386 @example 391 procedure User_MPCI_Return_Packet ( 392 Packet : in RTEMS.Packet_Prefix_Pointer 393 ); 387 NOT SUPPORTED FROM Ada BINDING 394 388 @end example 395 389 @end ifset … … 418 412 @ifset is-Ada 419 413 @example 420 procedure User_MPCI_Receive_Packet ( 421 Packet : access RTEMS.Packet_Prefix_Pointer 422 ); 414 NOT SUPPORTED FROM Ada BINDING 423 415 @end example 424 416 @end ifset … … 450 442 @ifset is-Ada 451 443 @example 452 procedure User_MPCI_Send_Packet ( 453 Node : in RTEMS.Unsigned32; 454 Packet : access RTEMS.Packet_Prefix_Pointer 455 ); 444 NOT SUPPORTED FROM Ada BINDING 456 445 @end example 457 446 @end ifset … … 597 586 @ifset is-Ada 598 587 @example 599 procedure Multiprocessing_Announce; 588 NOT SUPPORTED FROM Ada BINDING 600 589 @end example 601 590 @end ifset -
doc/user/rtmon.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 1238 1238 type Rate_Monotonic_Period_Status is 1239 1239 begin 1240 State : RTEMS.Rate_Monotonic_Period_States;1241 Ticks_Since_Last_Period : RTEMS.Unsigned32;1240 State : RTEMS.Rate_Monotonic_Period_States; 1241 Ticks_Since_Last_Period : RTEMS.Unsigned32; 1242 1242 Ticks_Executed_Since_Last_Period : RTEMS.Unsigned32; 1243 1243 end record; … … 1284 1284 @ifset is-Ada 1285 1285 @example 1286 not currently supported in Ada binding 1286 NOT SUPPORTED FROM Ada BINDING 1287 1287 @end example 1288 1288 @end ifset … … 1316 1316 @ifset is-Ada 1317 1317 @example 1318 not currently supported in Ada binding 1318 NOT SUPPORTED FROM Ada BINDING 1319 1319 @end example 1320 1320 @end ifset … … 1349 1349 @ifset is-Ada 1350 1350 @example 1351 not currently supported in Ada binding 1351 procedure Rate_Monotonic_Reset_Statistics ( 1352 ID : in RTEMS.ID; 1353 Result : out RTEMS.Status_Codes 1354 ); 1352 1355 @end example 1353 1356 @end ifset … … 1385 1388 @ifset is-Ada 1386 1389 @example 1387 not currently supported in Ada binding 1390 procedure Rate_Monotonic_Reset_All_Statistics; 1388 1391 @end example 1389 1392 @end ifset … … 1422 1425 @ifset is-Ada 1423 1426 @example 1424 not currently supported in Ada binding 1427 procedure Rate_Monotonic_Report_Statistics; 1425 1428 @end example 1426 1429 @end ifset … … 1440 1443 @example 1441 1444 ID OWNER PERIODS MISSED CPU TIME WALL TIME 1445 MIN/MAX/AVG MIN/MAX/AVG 1442 1446 0x42010001 TA1 502 0 0/1/0.99 0/0/0.00 1443 1447 0x42010002 TA2 502 0 0/1/0.99 0/0/0.00 -
doc/user/sem.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 398 398 @example 399 399 procedure Semaphore_Create ( 400 Name : in RTEMS.Name; 401 Count : in RTEMS.Unsigned32; 402 Attribute_Set : in RTEMS.Attribute; 403 ID : out RTEMS.ID; 404 Result : out RTEMS.Status_Codes 400 Name : in RTEMS.Name; 401 Count : in RTEMS.Unsigned32; 402 Attribute_Set : in RTEMS.Attribute; 403 Priority_Ceiling : in RTEMS.Task_Priority; 404 ID : out RTEMS.ID; 405 Result : out RTEMS.Status_Codes 405 406 ); 406 407 @end example -
doc/user/stackchk.t
rc4215ba r1b03eed 174 174 @ifset is-Ada 175 175 @example 176 An Ada interface is not currently available. 176 function Stack_Checker_Is_Blown return RTEMS.Boolean; 177 177 @end example 178 178 @end ifset … … 208 208 @ifset is-Ada 209 209 @example 210 An Ada interface is not currently available. 210 procedure Stack_Checker_Report_Usage; 211 211 @end example 212 212 @end ifset -
doc/user/task.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 6.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 872 872 procedure Task_Start ( 873 873 ID : in RTEMS.ID; 874 Entry_Point : in System.Address;875 Argument : in RTEMS.Task_Argument _PTR;874 Entry_Point : in RTEMS.Task_Entry; 875 Argument : in RTEMS.Task_Argument; 876 876 Result : out RTEMS.Status_Codes 877 877 ); … … 924 924 procedure Task_Restart ( 925 925 ID : in RTEMS.ID; 926 Argument : in RTEMS.Task_Argument _PTR;926 Argument : in RTEMS.Task_Argument; 927 927 Result : out RTEMS.Status_Codes 928 928 ); … … 1632 1632 @ifset is-Ada 1633 1633 @example 1634 NOT SUPPORTED FROM Ada 1634 NOT SUPPORTED FROM Ada BINDING 1635 1635 @end example 1636 1636 @end ifset -
doc/user/timer.t
rc4215ba r1b03eed 1 1 @c 2 @c COPYRIGHT (c) 1988-200 2.2 @c COPYRIGHT (c) 1988-2007. 3 3 @c On-Line Applications Research Corporation (OAR). 4 4 @c All rights reserved. … … 527 527 @example 528 528 procedure Timer_Initiate_Server ( 529 Stack_Size : in RTEMS.Unsigned32; 530 Attribute_Set : in RTEMS.Attribute; 531 Result : out RTEMS.Status_Codes 529 Server_Priority : in RTEMS.Task_Priority; 530 Stack_Size : in RTEMS.Unsigned32; 531 Attribute_Set : in RTEMS.Attribute; 532 Result : out RTEMS.Status_Codes 532 533 ); 533 534 @end example
Note: See TracChangeset
for help on using the changeset viewer.