linux.cc (9143:db55c4b5136e) linux.cc (11793:ef606668d247)
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
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
31#include <cstdio>
32#include <string>
33
34#include "cpu/thread_context.hh"
35#include "debug/SyscallVerbose.hh"
33#include <cstdio>
34#include <string>
35
36#include "cpu/thread_context.hh"
37#include "debug/SyscallVerbose.hh"
36#include "kern/linux/linux.hh"
37#include "sim/process.hh"
38#include "sim/system.hh"
39
40int
41Linux::openSpecialFile(std::string path, LiveProcess *process,
42 ThreadContext *tc)
43{
44 DPRINTF(SyscallVerbose, "Opening special file: %s\n", path.c_str());

--- 24 unchanged lines hidden ---
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 ---