00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
#ifndef _R_REF_COUNT_H
00016
#define _R_REF_COUNT_H
00017
00018
#include "mnthread.h"
00019
00020
#include <sys/types.h>
00021
#include <string.h>
00022
#include <stdlib.h>
00023
00028
00029
00030
00031
00032
00033 struct MNRopeRefCount
00034 {
00035
00036 volatile size_t
_M_ref_count;
00037
00038
00039
00040 mnthread_mutex_t _M_ref_count_lock;
00041
00042
00043
MNRopeRefCount(size_t __n);
00044
00045
virtual ~MNRopeRefCount();
00046
00047
00048
void _M_incr();
00049 size_t
_M_decr();
00050 };
00051
00052
static inline int max(
int a,
int b )
00053 {
00054
if ( a > b )
return a;
00055
return b;
00056 }
00057
00058
static inline int min(
int a,
int b )
00059 {
00060
if ( a < b )
return a;
00061
return b;
00062 }
00063
00064
00065
00066 inline void uninitialized_copy_n(
const uchar_t* src, size_t len, uchar_t* dest )
00067 {
00068 memmove(dest,src,len);
00069 }
00070
00071 inline void copy_n(
const uchar_t* src, size_t len, uchar_t* dest )
00072 {
00073 memmove(dest,src,len);
00074 }
00075
00076 inline void uninitialized_fill_n( uchar_t* dest, size_t len, uchar_t c )
00077 {
00078 memset(dest,c,len);
00079 }
00080
00081
00082
00083
00084
00085 inline void destroy( uchar_t* , size_t )
00086 { }
00087
00088 inline void destroy( uchar_t* , uchar_t* )
00089 { }
00090
00092
00093
#endif
00094