Changeset 98e3a335 in rtems


Ignore:
Timestamp:
01/03/03 16:33:22 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
b9fa9f0
Parents:
4257974
Message:

2003-01-03 Jay Monkman <jtm@…>

  • src/mqueueopen.c: Actually open the message queue descriptor so it is available for others to use.
Location:
cpukit/posix
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/posix/ChangeLog

    r4257974 r98e3a335  
     12003-01-03      Jay Monkman <jtm@smoothsmoothie.com>
     2
     3        * src/mqueueopen.c: Actually open the message queue descriptor
     4        so it is available for others to use.
     5
    162002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • cpukit/posix/src/mqueueopen.c

    r4257974 r98e3a335  
    113113    the_mq->open_count += 1;
    114114    the_mq_fd->Queue = the_mq;
     115    _Objects_Open(
     116      &_POSIX_Message_queue_Information_fds,
     117      &the_mq_fd->Object,
     118      NULL
     119    );
    115120    _Thread_Enable_dispatch();
    116121    _Thread_Enable_dispatch();
Note: See TracChangeset for help on using the changeset viewer.