Browse Source

change information

homework4
邓博昊 9 months ago
parent
commit
abc49ae458
8 changed files with 6 additions and 6 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      config.h
  3. BIN
      fsecs.o
  4. BIN
      ftimer.o
  5. BIN
      mdriver
  6. BIN
      mdriver.o
  7. +4
    -4
      mm.c
  8. BIN
      mm.o

+ 1
- 1
Makefile View File

@ -6,7 +6,7 @@ VERSION = 1
HANDINDIR = /afs/cs.cmu.edu/academic/class/15213-f01/malloclab/handin
CC = gcc
CFLAGS = -Wall -O2 -m32
CFLAGS = -Wall -O2 -m32 -ggdb
OBJS = mdriver.o mm.o memlib.o fsecs.o fcyc.o clock.o ftimer.o

+ 1
- 1
config.h View File

@ -12,7 +12,7 @@
* This is the default path where the driver will look for the
* default tracefiles. You can override it at runtime with the -t flag.
*/
#define TRACEDIR "/home/aqua/桌面/malloclab"
#define TRACEDIR "/home/aqua/malloclab/traces/"
/*
* This is the list of default tracefiles in TRACEDIR that the driver

BIN
fsecs.o View File


BIN
ftimer.o View File


BIN
mdriver View File


BIN
mdriver.o View File


+ 4
- 4
mm.c View File

@ -26,13 +26,13 @@ team_t team = {
/* Team name */
"ateam",
/* First member's full name */
"Harry Bovik",
"Deng Bohao",
/* First member's email address */
"bovik@cs.cmu.edu",
"10225501432@stu.ecnu.edu.cn",
/* Second member's full name (leave blank if none) */
"",
"Deng Bohao",
/* Second member's email address (leave blank if none) */
""
"10225501432@stu.ecnu.edu.cn"
};
/* single word (4) or double word (8) alignment */

BIN
mm.o View File


Loading…
Cancel
Save