faults.hh revision 4120:3e09b5d32c45
112837Sgabeblack@google.com/*
212837Sgabeblack@google.com * Copyright (c) 2007 The Hewlett-Packard Development Company
312837Sgabeblack@google.com * All rights reserved.
412837Sgabeblack@google.com *
512837Sgabeblack@google.com * Redistribution and use of this software in source and binary forms,
612837Sgabeblack@google.com * with or without modification, are permitted provided that the
712837Sgabeblack@google.com * following conditions are met:
812837Sgabeblack@google.com *
912837Sgabeblack@google.com * The software must be used only for Non-Commercial Use which means any
1012837Sgabeblack@google.com * use which is NOT directed to receiving any direct monetary
1112837Sgabeblack@google.com * compensation for, or commercial advantage from such use.  Illustrative
1212837Sgabeblack@google.com * examples of non-commercial use are academic research, personal study,
1312837Sgabeblack@google.com * teaching, education and corporate research & development.
1412837Sgabeblack@google.com * Illustrative examples of commercial use are distributing products for
1512837Sgabeblack@google.com * commercial advantage and providing services using the software for
1612837Sgabeblack@google.com * commercial advantage.
1712837Sgabeblack@google.com *
1812837Sgabeblack@google.com * If you wish to use this software or functionality therein that may be
1912837Sgabeblack@google.com * covered by patents for commercial use, please contact:
2012837Sgabeblack@google.com *     Director of Intellectual Property Licensing
2112837Sgabeblack@google.com *     Office of Strategy and Technology
2212837Sgabeblack@google.com *     Hewlett-Packard Company
2312837Sgabeblack@google.com *     1501 Page Mill Road
2412837Sgabeblack@google.com *     Palo Alto, California  94304
2512837Sgabeblack@google.com *
2612837Sgabeblack@google.com * Redistributions of source code must retain the above copyright notice,
2712837Sgabeblack@google.com * this list of conditions and the following disclaimer.  Redistributions
2812837Sgabeblack@google.com * in binary form must reproduce the above copyright notice, this list of
2912837Sgabeblack@google.com * conditions and the following disclaimer in the documentation and/or
3012837Sgabeblack@google.com * other materials provided with the distribution.  Neither the name of
3112837Sgabeblack@google.com * the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
3212837Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
3312837Sgabeblack@google.com * this software without specific prior written permission.  No right of
3412837Sgabeblack@google.com * sublicense is granted herewith.  Derivatives of the software and
3512837Sgabeblack@google.com * output created using the software may be prepared, but only for
3613087Sgabeblack@google.com * Non-Commercial Uses.  Derivatives of the software may be shared with
3712837Sgabeblack@google.com * others provided: (i) the others agree to abide by the list of
3812837Sgabeblack@google.com * conditions herein which includes the Non-Commercial Use restrictions;
3912837Sgabeblack@google.com * and (ii) such Derivatives of the software include the above copyright
4012914Sgabeblack@google.com * notice to acknowledge the contribution from this software where
4112914Sgabeblack@google.com * applicable, this list of conditions and the disclaimer below.
4212914Sgabeblack@google.com *
4312914Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4412914Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4512914Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4612914Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4712951Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4812951Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4912951Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
5012982Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
5112951Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5212952Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5312952Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5412952Sgabeblack@google.com *
5512952Sgabeblack@google.com * Authors: Gabe Black
5612952Sgabeblack@google.com */
5712952Sgabeblack@google.com
5812951Sgabeblack@google.com#ifndef __ARCH_X86_FAULTS_HH__
5912951Sgabeblack@google.com#define __ARCH_X86_FAULTS_HH__
6012951Sgabeblack@google.com
6112837Sgabeblack@google.com#error X86 is not yet supported!
6212837Sgabeblack@google.com
6312837Sgabeblack@google.comnamespace X86ISA
6412837Sgabeblack@google.com{
6512837Sgabeblack@google.com};
6612837Sgabeblack@google.com
6712837Sgabeblack@google.com#endif // __ARCH_X86_FAULTS_HH__
6812837Sgabeblack@google.com