From af7897eb00c665760952931de2dcf719af301be9 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 29 May 2005 21:18:53 +0000 Subject: [PATCH] XXX: I don't think this makes sense to be volatile... Remove it. --- sys/sys/sa.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/sa.h b/sys/sys/sa.h index d73842770884..72d6aaf153ea 100644 --- a/sys/sys/sa.h +++ b/sys/sys/sa.h @@ -1,4 +1,4 @@ -/* $NetBSD: sa.h,v 1.4 2004/01/02 18:52:17 cl Exp $ */ +/* $NetBSD: sa.h,v 1.5 2005/05/29 21:18:53 christos Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -49,7 +49,7 @@ struct sa_t { /* kernel known per upcall stack data */ struct sa_stackinfo_t { - __volatile unsigned int sasi_stackgen; /* stack generation counter */ + unsigned int sasi_stackgen; /* stack generation counter */ }; typedef void (*sa_upcall_t)(int, struct sa_t *[], int, int, void *);