atomic_word.h revision 132720
1171840Sdanger// Low-level type for atomic operations -*- C++ -*-
2171840Sdanger
3171840Sdanger// Copyright (C) 2004 Free Software Foundation, Inc.
4171840Sdanger//
5171840Sdanger// This file is part of the GNU ISO C++ Library.  This library is free
6171840Sdanger// software; you can redistribute it and/or modify it under the
7171840Sdanger// terms of the GNU General Public License as published by the
8171840Sdanger// Free Software Foundation; either version 2, or (at your option)
9171840Sdanger// any later version.
10171840Sdanger
11171840Sdanger// This library is distributed in the hope that it will be useful,
12171840Sdanger// but WITHOUT ANY WARRANTY; without even the implied warranty of
13171840Sdanger// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14171840Sdanger// GNU General Public License for more details.
15171840Sdanger
16171840Sdanger// You should have received a copy of the GNU General Public License along
17171840Sdanger// with this library; see the file COPYING.  If not, write to the Free
18171840Sdanger// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19171840Sdanger// USA.
20171840Sdanger
21171840Sdanger// As a special exception, you may use this file as part of a free software
22171840Sdanger// library without restriction.  Specifically, if other files instantiate
23171840Sdanger// templates or use macros or inline functions from this file, or you compile
24171840Sdanger// this file and link it with other files to produce an executable, this
25171840Sdanger// file does not by itself cause the resulting executable to be covered by
26171840Sdanger// the GNU General Public License.  This exception does not however
27171840Sdanger// invalidate any other reasons why the executable file might be covered by
28171840Sdanger// the GNU General Public License.
29171840Sdanger
30171840Sdanger#ifndef _GLIBCXX_ATOMIC_WORD_H
31171840Sdanger#define _GLIBCXX_ATOMIC_WORD_H	1
32171840Sdanger
33171840Sdangertypedef long _Atomic_word;
34171840Sdanger
35171840Sdanger#endif
36171840Sdanger