Changeset 3235ad9 in rtems for c/src/exec/sapi/headers


Ignore:
Timestamp:
08/23/95 19:30:23 (29 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/exec/sapi/headers
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/sapi/headers/config.h

    r80e2c29e r3235ad9  
    2222#endif
    2323
     24#include <rtems/types.h>
    2425#include <rtems/object.h>
    2526#include <rtems/thread.h>
     
    3334
    3435typedef struct {
    35   Objects_Name          name;              /* task name */
     36  rtems_name            name;              /* task name */
    3637  unsigned32            stack_size;        /* task stack size */
    3738  rtems_task_priority   initial_priority;  /* task priority */
  • c/src/exec/sapi/headers/extension.h

    r80e2c29e r3235ad9  
    2929#endif
    3030
     31#include <rtems.h>
    3132#include <rtems/object.h>
    3233#include <rtems/userext.h>
     
    7374
    7475rtems_status_code rtems_extension_create(
    75   Objects_Name                   name,
     76  rtems_name                     name,
    7677  rtems_extensions_table *extension_table,
    7778  Objects_Id                    *id
     
    9091
    9192rtems_status_code rtems_extension_ident(
    92   Objects_Name  name,
     93  rtems_name    name,
    9394  Objects_Id   *id
    9495);
  • c/src/exec/sapi/headers/init.h

    r80e2c29e r3235ad9  
    3131#endif
    3232
     33#include <rtems/types.h>
    3334#include <rtems/config.h>
    3435#include <rtems/intr.h>
Note: See TracChangeset for help on using the changeset viewer.