Deleted Added
sdiff udiff text old ( 9143:db55c4b5136e ) new ( 11793:ef606668d247 )
full compact
1/*
2 * Copyright (c) 2009 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;

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 */
30
31#include "kern/linux/linux.hh"
32
33#include <cstdio>
34#include <string>
35
36#include "cpu/thread_context.hh"
37#include "debug/SyscallVerbose.hh"
38#include "sim/process.hh"
39#include "sim/system.hh"
40
41int
42Linux::openSpecialFile(std::string path, LiveProcess *process,
43 ThreadContext *tc)
44{
45 DPRINTF(SyscallVerbose, "Opening special file: %s\n", path.c_str());

--- 24 unchanged lines hidden ---