Changeset 3235ad9 in rtems for c/src/optman/rtems


Ignore:
Timestamp:
08/23/95 19:30:23 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5250ff39
Parents:
80e2c29e
Message:

Support for variable length names added to Object Handler. This supports
both fixed length "raw" names and strings from the API's point of view.

Both inline and macro implementations were tested.

Location:
c/src/optman/rtems
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • c/src/optman/rtems/no-dpmem.c

    r80e2c29e r3235ad9  
    2626
    2727rtems_status_code rtems_port_create(
    28   Objects_Name  name,
     28  rtems_name    name,
    2929  void         *internal_start,
    3030  void         *external_start,
     
    3737
    3838rtems_status_code rtems_port_ident(
    39   Objects_Name  name,
     39  rtems_name    name,
    4040  Objects_Id   *id
    4141)
  • c/src/optman/rtems/no-msg.c

    r80e2c29e r3235ad9  
    3333
    3434rtems_status_code rtems_message_queue_create(
    35   Objects_Name        name,
     35  rtems_name          name,
    3636  unsigned32          count,
    3737  unsigned32          max_message_size,
     
    4444
    4545rtems_status_code rtems_message_queue_ident(
    46   Objects_Name  name,
     46  rtems_name    name,
    4747  unsigned32    node,
    4848  Objects_Id   *id
  • c/src/optman/rtems/no-part.c

    r80e2c29e r3235ad9  
    2828
    2929rtems_status_code rtems_partition_create(
    30   Objects_Name        name,
     30  rtems_name          name,
    3131  void               *starting_address,
    3232  unsigned32          length,
     
    4040
    4141rtems_status_code rtems_partition_ident(
    42   Objects_Name  name,
     42  rtems_name    name,
    4343  unsigned32    node,
    4444  Objects_Id   *id
  • c/src/optman/rtems/no-region.c

    r80e2c29e r3235ad9  
    2929
    3030rtems_status_code rtems_region_create(
    31   Objects_Name        name,
     31  rtems_name          name,
    3232  void               *starting_address,
    3333  unsigned32          length,
     
    4141
    4242rtems_status_code rtems_region_ident(
    43   Objects_Name  name,
     43  rtems_name    name,
    4444  Objects_Id   *id
    4545)
  • c/src/optman/rtems/no-rtmon.c

    r80e2c29e r3235ad9  
    2727
    2828rtems_status_code rtems_rate_monotonic_create(
    29   Objects_Name  name,
     29  rtems_name    name,
    3030  Objects_Id   *id
    3131)
     
    3535
    3636rtems_status_code rtems_rate_monotonic_ident(
    37   Objects_Name  name,
     37  rtems_name    name,
    3838  Objects_Id   *id
    3939)
  • c/src/optman/rtems/no-sem.c

    r80e2c29e r3235ad9  
    3232
    3333rtems_status_code rtems_semaphore_create(
    34   Objects_Name        name,
     34  rtems_name          name,
    3535  unsigned32          count,
    3636  rtems_attribute  attribute_set,
     
    4242
    4343rtems_status_code rtems_semaphore_ident(
    44   Objects_Name  name,
     44  rtems_name    name,
    4545  unsigned32    node,
    4646  Objects_Id   *id
  • c/src/optman/rtems/no-timer.c

    r80e2c29e r3235ad9  
    2828
    2929rtems_status_code rtems_timer_create(
    30   Objects_Name  name,
     30  rtems_name    name,
    3131  Objects_Id   *id
    3232)
     
    3636
    3737rtems_status_code rtems_timer_ident(
    38   Objects_Name  name,
     38  rtems_name    name,
    3939  Objects_Id   *id
    4040)
Note: See TracChangeset for help on using the changeset viewer.