diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-01-08 08:25:38 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-01-08 08:25:38 +0000 |
commit | 4953d0e707e86726b500ad1e34b245c6d5a6bac1 (patch) | |
tree | 61204f7e0a60585d6d8e849ecbf7d620073fdb69 /lib/libpthread/include/spinlock.h | |
parent | 0d9afd617d10e557c9e057d5e977d00941908cc7 (diff) |
move spinlock.h into the real world
Diffstat (limited to 'lib/libpthread/include/spinlock.h')
-rw-r--r-- | lib/libpthread/include/spinlock.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libpthread/include/spinlock.h b/lib/libpthread/include/spinlock.h index 0c49f5ec5df..152e6f2e775 100644 --- a/lib/libpthread/include/spinlock.h +++ b/lib/libpthread/include/spinlock.h @@ -29,8 +29,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: spinlock.h,v 1.1 1998/12/21 07:58:55 d Exp $ - * $OpenBSD: spinlock.h,v 1.1 1998/12/21 07:58:55 d Exp $ + * $Id: spinlock.h,v 1.2 1999/01/08 08:25:37 d Exp $ + * $OpenBSD: spinlock.h,v 1.2 1999/01/08 08:25:37 d Exp $ * * Lock definitions used in both libc and libpthread. * @@ -40,14 +40,14 @@ #define _SPINLOCK_H_ #include <sys/cdefs.h> #include <sys/types.h> -#include "_spinlock.h" +#include <machine/spinlock.h> /* * Lock structure with room for debugging information. */ typedef struct { volatile _spinlock_lock_t access_lock; - volatile long lock_owner; + volatile void * lock_owner; volatile const char * fname; volatile int lineno; } spinlock_t; |