Changeset 183f7748 in rtems


Ignore:
Timestamp:
11/30/00 14:34:49 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
cea4bd5
Parents:
eafa70b2
Message:

2000-11-30 Joel Sherrill <joel@…>

  • src/msgqsubmit.c: Modified multiprocessing conditional so this would compile with both macros and inlines.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/rtems/ChangeLog

    reafa70b2 r183f7748  
     12000-11-30      Joel Sherrill <joel@OARcorp.com>
     2
     3        * src/msgqsubmit.c: Modified multiprocessing conditional so
     4        this would compile with both macros and inlines.
     5
    162000-11-30      Joel Sherrill <joel@OARcorp.com>
    27
  • c/src/exec/rtems/src/msgqsubmit.c

    reafa70b2 r183f7748  
    5353 */
    5454
     55#if defined(RTEMS_MULTIPROCESSING)
     56#define MESSAGE_QUEUE_MP_HANDLER _Message_queue_Core_message_queue_mp_support
     57#else
     58#define MESSAGE_QUEUE_MP_HANDLER NULL
     59#endif
     60
    5561rtems_status_code _Message_queue_Submit(
    5662  Objects_Id                  id,
     
    103109            size,
    104110            id,
    105 #if defined(RTEMS_MULTIPROCESSING)
    106             _Message_queue_Core_message_queue_mp_support,
    107 #else
    108             NULL,
    109 #endif
     111            MESSAGE_QUEUE_MP_HANDLER,
    110112            FALSE,   /* sender does not block */
    111113            0        /* no timeout */
     
    118120            size,
    119121            id,
    120 #if defined(RTEMS_MULTIPROCESSING)
    121             _Message_queue_Core_message_queue_mp_support,
    122 #else
    123             NULL,
    124 #endif
     122            MESSAGE_QUEUE_MP_HANDLER,
    125123            FALSE,   /* sender does not block */
    126124            0        /* no timeout */
  • cpukit/rtems/ChangeLog

    reafa70b2 r183f7748  
     12000-11-30      Joel Sherrill <joel@OARcorp.com>
     2
     3        * src/msgqsubmit.c: Modified multiprocessing conditional so
     4        this would compile with both macros and inlines.
     5
    162000-11-30      Joel Sherrill <joel@OARcorp.com>
    27
  • cpukit/rtems/src/msgqsubmit.c

    reafa70b2 r183f7748  
    5353 */
    5454
     55#if defined(RTEMS_MULTIPROCESSING)
     56#define MESSAGE_QUEUE_MP_HANDLER _Message_queue_Core_message_queue_mp_support
     57#else
     58#define MESSAGE_QUEUE_MP_HANDLER NULL
     59#endif
     60
    5561rtems_status_code _Message_queue_Submit(
    5662  Objects_Id                  id,
     
    103109            size,
    104110            id,
    105 #if defined(RTEMS_MULTIPROCESSING)
    106             _Message_queue_Core_message_queue_mp_support,
    107 #else
    108             NULL,
    109 #endif
     111            MESSAGE_QUEUE_MP_HANDLER,
    110112            FALSE,   /* sender does not block */
    111113            0        /* no timeout */
     
    118120            size,
    119121            id,
    120 #if defined(RTEMS_MULTIPROCESSING)
    121             _Message_queue_Core_message_queue_mp_support,
    122 #else
    123             NULL,
    124 #endif
     122            MESSAGE_QUEUE_MP_HANDLER,
    125123            FALSE,   /* sender does not block */
    126124            0        /* no timeout */
Note: See TracChangeset for help on using the changeset viewer.