00001 #ifndef _SPIN_LOCKS_H_
00002 #define _SPIN_LOCKS_H_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #define L_UNLOCKED 0
00022 #define L_LOCKED 1
00023 #define L_MAXTESTS 4000
00024 #define L_SLEEPTIME 0
00025
00026
00027
00028
00029
00030
00031
00032 typedef long splock_t ;
00033
00034 __inline int S_LOCK( splock_t *laddr )
00035 { int cnt ;
00036
00037 while( InterlockedExchange( laddr, L_LOCKED ) == L_LOCKED ){
00038 cnt = L_MAXTESTS ;
00039
00040 while( *laddr == L_LOCKED ) {
00041 cnt-- ;
00042 if( cnt < 0 ){
00043 Sleep(L_SLEEPTIME) ;
00044 cnt = L_MAXTESTS ;
00045 }
00046 }
00047 }
00048 return(0) ;
00049 }
00050
00051 __inline int S_TRY_LOCK( splock_t *laddr )
00052 { long oldval ;
00053
00054 oldval = InterlockedExchange( laddr, L_LOCKED ) ;
00055 if( oldval == L_UNLOCKED) return(0) ;
00056 else return(1) ;
00057 }
00058
00059
00060 __inline static void S_UNLOCK( splock_t *laddr )
00061 {
00062 *laddr = L_UNLOCKED;
00063 }
00064
00065 __inline static void S_INIT_LOCK( splock_t *laddr )
00066 {
00067 S_UNLOCK( laddr );
00068 }
00069
00070
00071 #endif