Changeset 58accdd in rtems
- Timestamp:
- 05/21/04 20:11:48 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 138aa38
- Parents:
- 34d934a
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r34d934a r58accdd 1 2004-05-21 Joel Sherrill <joel@OARcorp.com> 2 3 PR 629/rtems 4 * cpukit/src/mqueuecreatesupp.c: Return EINVAL is mq_maxmsg is 5 <= 0, not <. 6 1 7 2004-05-21 Till Strauman <strauman@slac.stanford.edu> 2 8 -
cpukit/posix/src/mqueuecreatesupp.c
r34d934a r58accdd 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.