Changeset 0732eb4 in rtems
- Timestamp:
- 05/21/04 20:12:26 (19 years ago)
- Children:
- cfc43898
- Parents:
- e2ce15fc
- Location:
- cpukit/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/posix/ChangeLog
re2ce15fc r0732eb4 1 2004-05-21 Joel Sherrill <joel@OARcorp.com> 2 3 PR 629/rtems 4 * src/mqueuecreatesupp.c: Return EINVAL is mq_maxmsg is <= 0, not <. 5 1 6 2004-02-26 Joel Sherrill <joel@OARcorp.com> 2 7 -
cpukit/posix/src/mqueuecreatesupp.c
re2ce15fc r0732eb4 77 77 attr.mq_msgsize = 16; 78 78 } else { 79 if ( attr_ptr->mq_maxmsg < 0 ){79 if ( attr_ptr->mq_maxmsg <= 0 ){ 80 80 _Thread_Enable_dispatch(); 81 81 rtems_set_errno_and_return_minus_one( EINVAL ); 82 82 } 83 83 84 if ( attr_ptr->mq_msgsize < 0 ){84 if ( attr_ptr->mq_msgsize <= 0 ){ 85 85 _Thread_Enable_dispatch(); 86 86 rtems_set_errno_and_return_minus_one( EINVAL );
Note: See TracChangeset
for help on using the changeset viewer.