Changeset 1459
- Timestamp:
- Sep 5, 2004, 11:15:44 PM (21 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 2 edited
-
include/InnoTekLIBC/sharedpm.h (modified) (1 diff, 1 prop)
-
src/lib/sys/sharedpm.c (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/sharedpm.h
-
Property cvs2svn:cvs-rev
changed from
1.3to1.4
r1458 r1459 500 500 int __libc_spmSocketDeref(int iSocket); 501 501 502 503 504 505 506 507 508 509 510 511 512 502 513 __END_DECLS 503 514 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/sharedpm.c
-
Property cvs2svn:cvs-rev
changed from
1.2to1.3
r1458 r1459 742 742 } 743 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 744 767 745 768 … … 1685 1708 SPM_ASSERT_PTR_NULL(pLeft->core.pPrev); 1686 1709 1687 if (pLeft ->core.pNext== pFree->core.pPrev)1710 if (pLeft == pFree->core.pPrev) 1688 1711 { /* merge with left free chunk. */ 1689 1712 pLeft->core.pNext = pFree->core.pNext; … … 1710 1733 1711 1734 /* Check if we can merge with right hand free chunk. */ 1712 if (pRight && pRight ->core.pPrev== pFree->core.pNext)1735 if (pRight && pRight == pFree->core.pNext) 1713 1736 { /* merge with right free chunk. */ 1714 1737 pFree->core.pNext = pRight->core.pNext; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
