Changeset 6b384516 in rtems


Ignore:
Timestamp:
01/10/03 15:04:42 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
81df4984
Parents:
eb7cddd3
Message:

2003-01-10 Joel Sherrill <joel@…>

  • src/msg.c, src/part.c, src/sem.c, src/tasks.c: Correct object class control structure initialization for multiprocessing configurations.
Location:
cpukit/rtems
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • cpukit/rtems/ChangeLog

    reb7cddd3 r6b384516  
     12003-01-10      Joel Sherrill <joel@OARcorp.com>
     2
     3        * src/msg.c, src/part.c, src/sem.c, src/tasks.c: Correct object
     4        class control structure initialization for multiprocessing
     5        configurations.
     6
    172002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/rtems/src/msg.c

    reb7cddd3 r6b384516  
    5959#if defined(RTEMS_MULTIPROCESSING)
    6060    ,
    61     FALSE,                     /* TRUE if this is a global object class */
    62     NULL                       /* Proxy extraction support callout */
     61    TRUE,                      /* TRUE if this is a global object class */
     62    _Message_queue_MP_Send_extract_proxy  /* Proxy extraction support callout */
    6363#endif
    6464  );
  • cpukit/rtems/src/part.c

    reb7cddd3 r6b384516  
    4949#if defined(RTEMS_MULTIPROCESSING)
    5050    ,
    51     FALSE,                       /* TRUE if this is a global object class */
    52     NULL                         /* Proxy extraction support callout */
     51    TRUE,                        /* TRUE if this is a global object class */
     52    _Partition_MP_Send_extract_proxy  /* Proxy extraction support callout */
    5353#endif
    5454  );
  • cpukit/rtems/src/sem.c

    reb7cddd3 r6b384516  
    7272#if defined(RTEMS_MULTIPROCESSING)
    7373    ,
    74     FALSE,                       /* TRUE if this is a global object class */
    75     NULL                        /* Proxy extraction support callout */
     74    TRUE,                        /* TRUE if this is a global object class */
     75    _Semaphore_MP_Send_extract_proxy /* Proxy extraction support callout */
    7676#endif
    7777  );
  • cpukit/rtems/src/tasks.c

    reb7cddd3 r6b384516  
    259259#if defined(RTEMS_MULTIPROCESSING)
    260260    ,
    261     FALSE,                     /* TRUE if this is a global object class */
     261    TRUE,                      /* TRUE if this is a global object class */
    262262    NULL                       /* Proxy extraction support callout */
    263263#endif
Note: See TracChangeset for help on using the changeset viewer.