process.cc (5154:7e6431213487) process.cc (5183:b4decf133fe4)
1
2/*
3 * Copyright (c) 2003-2004 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

58
59 // Set up region for mmaps. For now, start at bottom of kuseg space.
60 mmap_start = mmap_end = 0x10000;
61}
62
63void
64MipsLiveProcess::startup()
65{
1
2/*
3 * Copyright (c) 2003-2004 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

58
59 // Set up region for mmaps. For now, start at bottom of kuseg space.
60 mmap_start = mmap_end = 0x10000;
61}
62
63void
64MipsLiveProcess::startup()
65{
66 if (checkpointRestored)
67 return;
68
66 argsInit(MachineBytes, VMPageSize);
67}
69 argsInit(MachineBytes, VMPageSize);
70}