summaryrefslogtreecommitdiff
path: root/accel-pptpd/triton/spinlock.h
diff options
context:
space:
mode:
authorKozlov Dmitry <dima@server>2010-10-14 17:38:00 +0400
committerKozlov Dmitry <dima@server>2010-10-14 17:38:00 +0400
commitf2cca0f357cebb8aedc43673809cae396a921c98 (patch)
treeab5950279a2b908c940652577bc51e25f36cc9dd /accel-pptpd/triton/spinlock.h
parent719730c5021a365b585701d4534a37a9551d8395 (diff)
downloadaccel-ppp-f2cca0f357cebb8aedc43673809cae396a921c98.tar.gz
accel-ppp-f2cca0f357cebb8aedc43673809cae396a921c98.zip
radius: send Framed-IP-Address in Accounting-Request
Diffstat (limited to 'accel-pptpd/triton/spinlock.h')
-rw-r--r--accel-pptpd/triton/spinlock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pptpd/triton/spinlock.h b/accel-pptpd/triton/spinlock.h
index b13cde6..61f9b01 100644
--- a/accel-pptpd/triton/spinlock.h
+++ b/accel-pptpd/triton/spinlock.h
@@ -2,7 +2,7 @@
#define __TRITON_SPINLOCK_H
#ifdef GCC_SPINLOCK
-typedef volatile unsigned char spinlock_t;
+typedef volatile unsigned int spinlock_t;
#define spin_lock(l) {while(__sync_lock_test_and_set(l,1));}
#define spin_unlock(l) __sync_lock_release(l)
#define SPINLOCK_INITIALIZER 0