Deleted Added
sdiff udiff text old ( 8767:e575781f71b8 ) new ( 11381:516213d2f0cf )
full compact
1/*
2 * Copyright (c) 2004-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;

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

33
34#include "base/types.hh"
35
36#include <string>
37
38class LiveProcess;
39class ThreadContext;
40
41/// This struct is used to build an target-OS-dependent table that
42/// maps the target's open() flags to the host open() flags.
43struct OpenFlagTransTable {
44 int tgtFlag; //!< Target system flag value.
45 int hostFlag; //!< Corresponding host system flag value.
46};
47
48
49///
50/// This class encapsulates the types, structures, constants,
51/// functions, and syscall-number mappings specific to an operating system

--- 74 unchanged lines hidden ---