mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Darwin fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11904 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
cb1738d5d4
commit
70875d6164
9 changed files with 187 additions and 32 deletions
|
@ -83,6 +83,11 @@ static objc_mutex_t retain_counts_gate = NULL;
|
|||
#define CACHE_ZONE 0
|
||||
#endif
|
||||
|
||||
#ifdef ALIGN
|
||||
#undef ALIGN
|
||||
#endif
|
||||
#define ALIGN __alignof__(double)
|
||||
|
||||
#if defined(REFCNT_LOCAL) || defined(CACHE_ZONE)
|
||||
|
||||
/*
|
||||
|
@ -105,10 +110,6 @@ typedef struct obj_layout_unpadded {
|
|||
* what padding (if any) is required to get the alignment of the
|
||||
* structure correct.
|
||||
*/
|
||||
#ifdef ALIGN
|
||||
#undef ALIGN
|
||||
#endif
|
||||
#define ALIGN __alignof__(double)
|
||||
|
||||
struct obj_layout {
|
||||
#if defined(REFCNT_LOCAL)
|
||||
|
@ -265,7 +266,7 @@ NSDecrementExtraRefCountWasZero (id anObject)
|
|||
objc_mutex_unlock(retain_counts_gate);
|
||||
return YES;
|
||||
}
|
||||
NSAssert((int)(node->value) > 0, NSInternalInconsistencyException);
|
||||
NSCAssert((int)(node->value) > 0, NSInternalInconsistencyException);
|
||||
if (!--((int)(node->value)))
|
||||
{
|
||||
o_map_remove_node (node);
|
||||
|
@ -279,7 +280,7 @@ NSDecrementExtraRefCountWasZero (id anObject)
|
|||
{
|
||||
return YES;
|
||||
}
|
||||
NSAssert((int)(node->value) > 0, NSInternalInconsistencyException);
|
||||
NSCAssert((int)(node->value) > 0, NSInternalInconsistencyException);
|
||||
if (!--((int)(node->value)))
|
||||
{
|
||||
o_map_remove_node (node);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue