Changeset 9ac3e76 in rtems
- Timestamp:
- 08/15/96 19:38:46 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0600e86f
- Parents:
- 7fb19bb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/mutex.c
r7fb19bb r9ac3e76 223 223 if ( attr ) the_attr = attr; 224 224 else the_attr = &_POSIX_Mutex_Default_attributes; 225 226 /* XXX need to check for NULL mutex */ 227 /* XXX EBUSY if *mutex is a valid id */ 225 228 226 229 if ( !the_attr->is_initialized ) … … 263 266 if ( !the_mutex ) { 264 267 _Thread_Enable_dispatch(); 265 return E NOMEM;268 return EAGAIN; 266 269 } 267 270 -
cpukit/posix/src/mutex.c
r7fb19bb r9ac3e76 223 223 if ( attr ) the_attr = attr; 224 224 else the_attr = &_POSIX_Mutex_Default_attributes; 225 226 /* XXX need to check for NULL mutex */ 227 /* XXX EBUSY if *mutex is a valid id */ 225 228 226 229 if ( !the_attr->is_initialized ) … … 263 266 if ( !the_mutex ) { 264 267 _Thread_Enable_dispatch(); 265 return E NOMEM;268 return EAGAIN; 266 269 } 267 270
Note: See TracChangeset
for help on using the changeset viewer.