summaryrefslogtreecommitdiffstats
path: root/src/server/reftypes.h
blob: 45c0c20dacea125dc043b1e55357c64ca6d4d3e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _REFTYPES_H_
#define _REFTYPES_H_

#include <stdatomic.h>

_Static_assert( sizeof( void * ) == sizeof( _Atomic( void * ) ), "Atomic pointer bad" );

typedef _Atomic( void * ) weakref;

#define aligned_ref(ptr) \
	((union _aligned_ref_ *)((ptr) - (uintptr_t)(ptr) % sizeof(union _aligned_ref_)))

union _aligned_ref_ {
	struct _ref_ *ref;
	void *_padding[( 32 - 1 ) / sizeof( void * ) + 1];
};

typedef struct _ref_ {
	_Atomic long count;
	void ( *free )( struct _ref_ * );
	char _padding[sizeof( union _aligned_ref_ )];
	char _aligned_ref[sizeof( union _aligned_ref_ )];
} ref;

#endif