Changeset 2282
- Timestamp:
- Aug 20, 2005, 11:29:19 PM (20 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/ChangeLog.LIBC
-
Property cvs2svn:cvs-rev
changed from
1.116
to1.117
r2281 r2282 5 5 2005-08-20: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 6 - libc: 7 o Log __fmutex_release_internal_must_complete. 7 8 o Corrected a few prototypes in process.h to use pid_t. 8 9 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/fmutex.c
-
Property cvs2svn:cvs-rev
changed from
1.14
to1.15
r2281 r2282 330 330 unsigned __fmutex_release_internal_must_complete(_fmutex *sem) 331 331 { 332 LIBCLOG_ENTER("sem=%p{.pszDesc=%s}\n", (void *)sem, sem->pszDesc); 332 333 ULONG ulNesting; 333 334 __atomic_xchg(&sem->Owner, 0); … … 338 339 DosExitMustComplete(&ulNesting); 339 340 FS_RESTORE(); 340 return 0;341 LIBCLOG_RETURN_UINT(0); 341 342 } 342 343 else … … 346 347 DosExitMustComplete(&ulNesting); 347 348 FS_RESTORE(); 348 return rc;349 LIBCLOG_RETURN_UINT(rc); 349 350 } 350 351 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.