diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-04-11 19:35:30 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-04-11 19:35:30 -0400 |
commit | 08d9e0ea7ad5f6a0addd711bc4ff14cff2789170 (patch) | |
tree | 90685e915bb3cf7bd2e0f8e39837643abc1787af /mem/port.cc | |
parent | 194fb50fbd3f00577ce129762c9a8f13c721e4ad (diff) | |
download | gem5-08d9e0ea7ad5f6a0addd711bc4ff14cff2789170.tar.xz |
change how much of the param string is copied into the kenel
Set locked flag if required
make SC always return success -- this needs to be fixed at some point
fix a couple of things
FS executes a bit of console code before dying a horrible death
arch/alpha/linux/system.cc:
only need to copy the length of the os flags param, not 256 bytes
cpu/simple/cpu.cc:
Set the physical flag if required
Make LL/SC always return success
mem/bus.cc:
add some dprintfs and change a assert to a panic
mem/port.cc:
delete the buffer with the [] operator
mem/request.hh:
add a function to reset a request
--HG--
extra : convert_revision : f2b78ddad33c7f6ffe1c48791d86609ff1d10d46
Diffstat (limited to 'mem/port.cc')
-rw-r--r-- | mem/port.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mem/port.cc b/mem/port.cc index d19d8146c..d312f3e3c 100644 --- a/mem/port.cc +++ b/mem/port.cc @@ -72,5 +72,5 @@ Port::memsetBlob(Addr addr, uint8_t val, int size) memset(buf, val, size); blobHelper(addr, buf, size, Write); - delete buf; + delete [] buf; } |