Deleted Added
sdiff udiff text old ( 11414:cfad34a15729 ) new ( 13536:77e19417e723 )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 17 unchanged lines hidden (view full) ---

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 */
30
31#ifndef __ARCH_SPARC_LINUX_LINUX_HH__
32#define __ARCH_SPARC_LINUX_LINUX_HH__
33
34#include "kern/linux/linux.hh"
35
36class SparcLinux : public Linux
37{
38 public:
39
40 typedef struct {
41 uint32_t st_dev;

--- 135 unchanged lines hidden (view full) ---

177 case TGT_TCGETS:
178 case TGT_TCGETA:
179 case TGT_TCSETAW:
180 return true;
181 default:
182 return false;
183 }
184 }
185};
186
187class Sparc32Linux : public SparcLinux
188{
189 public:
190
191 typedef struct {
192 uint64_t st_dev;

--- 42 unchanged lines hidden ---