Try to get the correct license on various files
remove stuff that is ambiguous Clean up code a bit arch/alpha/aout_machdep.h: Add M5 License docs/stl.hh: M5 license base/remote_gdb.cc: Most of this is mine, so stick in the m5 license dev/console.hh: Clean up comments merge simple() and out() into one function. dev/console.hh: dev/console.cc: m5 license dev/console.cc: merge simple and out. remove dead code dev/console.cc: Remove comments that weren't mine. Clean up code dev/console.hh: update names dev/alpha_console.cc: use new interface --HG-- extra : convert_revision : 3cd2357e1525db43c2ef9e89a9b47a47861d6af9
This commit is contained in:
parent
940c214759
commit
b177f696ff
6 changed files with 175 additions and 106 deletions
|
@ -1,4 +1,30 @@
|
||||||
/* $Id$ */
|
/*
|
||||||
|
* Copyright (c) 2003 The Regents of The University of Michigan
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met: redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer;
|
||||||
|
* redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution;
|
||||||
|
* neither the name of the copyright holders nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef __AOUT_MACHDEP_H__
|
#ifndef __AOUT_MACHDEP_H__
|
||||||
#define __AOUT_MACHDEP_H__
|
#define __AOUT_MACHDEP_H__
|
||||||
|
|
|
@ -1,4 +1,31 @@
|
||||||
/* $Id$ */
|
/*
|
||||||
|
* Copyright (c) 2003 The Regents of The University of Michigan
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met: redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer;
|
||||||
|
* redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution;
|
||||||
|
* neither the name of the copyright holders nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1990, 1993
|
* Copyright (c) 1990, 1993
|
||||||
* The Regents of the University of California. All rights reserved.
|
* The Regents of the University of California. All rights reserved.
|
||||||
|
|
|
@ -139,7 +139,7 @@ AlphaConsole::write(MemReqPtr req, const uint8_t *data)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (paddr == offsetof(AlphaAccess, outputChar)) {
|
if (paddr == offsetof(AlphaAccess, outputChar)) {
|
||||||
console->simple((char)(val & 0xff));
|
console->out((char)(val & 0xff), false);
|
||||||
return No_Fault;
|
return No_Fault;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
147
dev/console.cc
147
dev/console.cc
|
@ -1,4 +1,30 @@
|
||||||
/* $Id$ */
|
/*
|
||||||
|
* Copyright (c) 2003 The Regents of The University of Michigan
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met: redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer;
|
||||||
|
* redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution;
|
||||||
|
* neither the name of the copyright holders nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
/* @file
|
/* @file
|
||||||
* User Console Definitions
|
* User Console Definitions
|
||||||
|
@ -26,15 +52,6 @@
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
// check whether an int is pending
|
|
||||||
inline bool
|
|
||||||
IntPending(int status, int mask)
|
|
||||||
{ return (status & mask) != 0; }
|
|
||||||
|
|
||||||
inline bool
|
|
||||||
IntTransition(int ostaus, int omask, int nstatus, int nmask)
|
|
||||||
{ return IntPending(ostaus, omask) != IntPending(nstatus, nmask); }
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
@ -56,7 +73,7 @@ SimConsole::Event::process(int revent)
|
||||||
SimConsole::SimConsole(const string &name, const string &file, int num)
|
SimConsole::SimConsole(const string &name, const string &file, int num)
|
||||||
: SimObject(name), event(NULL), number(num), in_fd(-1), out_fd(-1),
|
: SimObject(name), event(NULL), number(num), in_fd(-1), out_fd(-1),
|
||||||
listener(NULL), txbuf(16384), rxbuf(16384), outfile(NULL),
|
listener(NULL), txbuf(16384), rxbuf(16384), outfile(NULL),
|
||||||
intr_status(0), intr_enable(0), intr(NULL)
|
_status(0), _enable(0), intr(NULL)
|
||||||
{
|
{
|
||||||
if (!file.empty())
|
if (!file.empty())
|
||||||
outfile = new ofstream(file.c_str());
|
outfile = new ofstream(file.c_str());
|
||||||
|
@ -182,13 +199,6 @@ SimConsole::write(const uint8_t *buf, size_t len)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////
|
|
||||||
// ConfigureTerm turns off all character processing by the host OS so
|
|
||||||
// the launched OS can control it.
|
|
||||||
//
|
|
||||||
// We ignore anything except stdin; the sconsole program runs this
|
|
||||||
// same code on the ttys for the slave consoles before connecting.
|
|
||||||
//
|
|
||||||
void
|
void
|
||||||
SimConsole::configTerm()
|
SimConsole::configTerm()
|
||||||
{
|
{
|
||||||
|
@ -210,18 +220,6 @@ SimConsole::configTerm()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////
|
|
||||||
// console i/o
|
|
||||||
//
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Console input.
|
|
||||||
// Returns -1 if there is no character pending, otherwise returns the
|
|
||||||
// char. Calling this function clears the input int (if no further
|
|
||||||
// chars are pending).
|
|
||||||
//
|
|
||||||
int
|
int
|
||||||
SimConsole::in()
|
SimConsole::in()
|
||||||
{
|
{
|
||||||
|
@ -234,21 +232,13 @@ SimConsole::in()
|
||||||
rxbuf.read(&c, 1);
|
rxbuf.read(&c, 1);
|
||||||
|
|
||||||
DPRINTF(Console, "in: \'%c\' %#02x status: %#x\n",
|
DPRINTF(Console, "in: \'%c\' %#02x status: %#x\n",
|
||||||
isprint(c) ? c : ' ', c, intr_status);
|
isprint(c) ? c : ' ', c, _status);
|
||||||
|
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Console output.
|
|
||||||
// NOTE: this very rudimentary device generates a TX int as soon as
|
|
||||||
// a character is output, since it has unlimited TX buffer capacity.
|
|
||||||
//
|
|
||||||
// Console output.
|
|
||||||
// Uses sim_console_out to perform functionality similar to 'write'
|
|
||||||
void
|
void
|
||||||
SimConsole::out(char c)
|
SimConsole::out(char c, bool raise_int)
|
||||||
{
|
{
|
||||||
txbuf.write(c);
|
txbuf.write(c);
|
||||||
|
|
||||||
|
@ -258,59 +248,39 @@ SimConsole::out(char c)
|
||||||
if (outfile)
|
if (outfile)
|
||||||
outfile->write(&c, 1);
|
outfile->write(&c, 1);
|
||||||
|
|
||||||
raiseInt(TransmitInterrupt);
|
if (raise_int)
|
||||||
|
raiseInt(TransmitInterrupt);
|
||||||
|
|
||||||
DPRINTF(Console, "out: \'%c\' %#02x status: %#x\n",
|
DPRINTF(Console, "out: \'%c\' %#02x",
|
||||||
isprint(c) ? c : ' ', (int)c, intr_status);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Simple console output used by Alpha firmware (not by the OS) -
|
|
||||||
// outputs the character to console n, and doesn't raise any
|
|
||||||
// interrupts
|
|
||||||
void
|
|
||||||
SimConsole::simple(char c)
|
|
||||||
{
|
|
||||||
txbuf.write(c);
|
|
||||||
|
|
||||||
if (out_fd >= 0)
|
|
||||||
write(c);
|
|
||||||
|
|
||||||
if (outfile)
|
|
||||||
outfile->write(&c, 1);
|
|
||||||
|
|
||||||
DPRINTF(Console, "simple char: \'%c\' %#02x\n",
|
|
||||||
isprint(c) ? c : ' ', (int)c);
|
isprint(c) ? c : ' ', (int)c);
|
||||||
|
|
||||||
|
if (raise_int)
|
||||||
|
DPRINTF(Console, "status: %#x\n", _status);
|
||||||
|
else
|
||||||
|
DPRINTF(Console, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read the current interrupt status of this console.
|
inline bool
|
||||||
int
|
MaskStatus(int status, int mask)
|
||||||
SimConsole::intStatus()
|
{ return (status & mask) != 0; }
|
||||||
{
|
|
||||||
#if 0
|
|
||||||
DPRINTF(Console, "interrupt %d status: %#x\n",
|
|
||||||
number, intr_status);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return intr_status;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
SimConsole::clearInt(int i)
|
SimConsole::clearInt(int i)
|
||||||
{
|
{
|
||||||
int old_status = intr_status;
|
int old = _status;
|
||||||
intr_status &= ~i;
|
_status &= ~i;
|
||||||
if (IntTransition(old_status, intr_enable, intr_status, intr_enable) &&
|
if (MaskStatus(old, _enable) != MaskStatus(_status, _enable) && intr)
|
||||||
intr)
|
|
||||||
intr->clear(TheISA::INTLEVEL_IRQ0);
|
intr->clear(TheISA::INTLEVEL_IRQ0);
|
||||||
return old_status;
|
|
||||||
|
return old;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SimConsole::raiseInt(int i)
|
SimConsole::raiseInt(int i)
|
||||||
{
|
{
|
||||||
int old = intr_status;
|
int old = _status;
|
||||||
intr_status |= i;
|
_status |= i;
|
||||||
if (IntTransition(old, intr_enable, intr_status, intr_enable) && intr)
|
if (MaskStatus(old, _enable) != MaskStatus(_status, _enable) && intr)
|
||||||
intr->post(TheISA::INTLEVEL_IRQ0);
|
intr->post(TheISA::INTLEVEL_IRQ0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -320,27 +290,22 @@ SimConsole::initInt(IntrControl *i)
|
||||||
if (intr)
|
if (intr)
|
||||||
panic("Console has already been initialized.");
|
panic("Console has already been initialized.");
|
||||||
|
|
||||||
// note: intr_status and intr_enable will normally be 0, since
|
intr = i;
|
||||||
// cs is statically allocated. When restoring from a checkpoint,
|
|
||||||
// these fields will be set, so don't touch them here.
|
|
||||||
intr = i; // interrupt handler
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the interrupt enable bits.
|
|
||||||
void
|
void
|
||||||
SimConsole::setInt(int bits)
|
SimConsole::setInt(int bits)
|
||||||
{
|
{
|
||||||
int old_enable;
|
int old;
|
||||||
|
|
||||||
if (bits & ~(TransmitInterrupt | ReceiveInterrupt))
|
if (bits & ~(TransmitInterrupt | ReceiveInterrupt))
|
||||||
panic("An interrupt was not set!");
|
panic("An interrupt was not set!");
|
||||||
|
|
||||||
old_enable = intr_enable;
|
old = _enable;
|
||||||
intr_enable |= bits;
|
_enable |= bits;
|
||||||
|
|
||||||
if (IntTransition(intr_status, old_enable, intr_status, intr_enable) &&
|
if (MaskStatus(_status, old) != MaskStatus(_status, _enable) && intr) {
|
||||||
intr) {
|
if (MaskStatus(_status, _enable))
|
||||||
if (IntPending(intr_status, intr_enable))
|
|
||||||
intr->post(TheISA::INTLEVEL_IRQ0);
|
intr->post(TheISA::INTLEVEL_IRQ0);
|
||||||
else
|
else
|
||||||
intr->clear(TheISA::INTLEVEL_IRQ0);
|
intr->clear(TheISA::INTLEVEL_IRQ0);
|
||||||
|
@ -356,7 +321,7 @@ SimConsole::serialize()
|
||||||
|
|
||||||
void
|
void
|
||||||
SimConsole::unserialize(IniFile &db, const std::string &category,
|
SimConsole::unserialize(IniFile &db, const std::string &category,
|
||||||
ConfigNode *node)
|
ConfigNode *node)
|
||||||
{
|
{
|
||||||
panic("Unimplemented");
|
panic("Unimplemented");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,30 @@
|
||||||
/* $Id$ */
|
/*
|
||||||
|
* Copyright (c) 2003 The Regents of The University of Michigan
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met: redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer;
|
||||||
|
* redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution;
|
||||||
|
* neither the name of the copyright holders nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
/* @file
|
/* @file
|
||||||
* User Console Interface
|
* User Console Interface
|
||||||
|
@ -69,8 +95,8 @@ class SimConsole : public SimObject
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// interrupt status/enable
|
// interrupt status/enable
|
||||||
int intr_status;
|
int _status;
|
||||||
int intr_enable;
|
int _enable;
|
||||||
|
|
||||||
// interrupt handle
|
// interrupt handle
|
||||||
IntrControl *intr;
|
IntrControl *intr;
|
||||||
|
@ -79,16 +105,13 @@ class SimConsole : public SimObject
|
||||||
/////////////////
|
/////////////////
|
||||||
// OS interface
|
// OS interface
|
||||||
|
|
||||||
// Input a character from the console. Returns the character (if
|
// Get a character from the console.
|
||||||
// any) or -1 if there is no character pending on this console. If
|
// return of -1 means there is no character pending.
|
||||||
// no further characters are pending, the (input) interrupt is
|
// Interrupts are cleared when the buffer is empty.
|
||||||
// cleared.
|
|
||||||
int in();
|
int in();
|
||||||
|
|
||||||
// Output a character to the console. This never fails, as this
|
// Send a character to the console
|
||||||
// device doesn't model finite buffering capacity.
|
void out(char c, bool raise_int = true);
|
||||||
void out(char c);
|
|
||||||
void simple(char c);
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
TransmitInterrupt = 1,
|
TransmitInterrupt = 1,
|
||||||
|
@ -96,7 +119,7 @@ class SimConsole : public SimObject
|
||||||
};
|
};
|
||||||
|
|
||||||
// Read the current interrupt status of this console.
|
// Read the current interrupt status of this console.
|
||||||
int intStatus();
|
int intStatus() { return _status; }
|
||||||
|
|
||||||
// Set the interrupt enable bits.
|
// Set the interrupt enable bits.
|
||||||
int clearInt(int i);
|
int clearInt(int i);
|
||||||
|
|
28
docs/stl.hh
28
docs/stl.hh
|
@ -1,3 +1,31 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2003 The Regents of The University of Michigan
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met: redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer;
|
||||||
|
* redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution;
|
||||||
|
* neither the name of the copyright holders nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* Dummy definitions of STL classes to pick up relationships in doxygen.
|
* Dummy definitions of STL classes to pick up relationships in doxygen.
|
||||||
|
|
Loading…
Reference in a new issue