snapshot: remove SSDEBUG
authorBrian Norris <banorris@uci.edu>
Thu, 3 Jan 2013 01:54:45 +0000 (17:54 -0800)
committerBrian Norris <banorris@uci.edu>
Thu, 3 Jan 2013 03:12:03 +0000 (19:12 -0800)
We don't need a separate snapshotting DEBUG() macro.

snapshot.cc

index 114473d50d27e21b476f9ab48e57232f888e3eda..a562b91b4064f57c65f8d63964a0d3ca8038c035 100644 (file)
 
 #define FAILURE(mesg) { model_print("failed in the API: %s with errno relative message: %s\n", mesg, strerror(errno)); exit(EXIT_FAILURE); }
 
-#ifdef CONFIG_SSDEBUG
-#define SSDEBUG                model_print
-#else
-#define SSDEBUG(...)   do { } while (0)
-#endif
-
 #if USE_MPROTECT_SNAPSHOT
 /* Each snapshotrecord lists the firstbackingpage that must be written to
  * revert to that snapshot */
@@ -298,7 +292,7 @@ void initSnapshotLibrary(unsigned int numbackingpages,
                        int status;
                        int retVal;
 
-                       SSDEBUG("The process id of child is %d and the process id of this process is %d and snapshot id is %d\n",
+                       DEBUG("The process id of child is %d and the process id of this process is %d and snapshot id is %d\n",
                                forkedID, getpid(), snapshotid);
 
                        do {
@@ -353,7 +347,7 @@ snapshot_id takeSnapshot()
        return snapshot;
 #else
        swapcontext(&savedUserSnapshotContext, &savedSnapshotContext);
-       SSDEBUG("TAKESNAPSHOT RETURN\n");
+       DEBUG("TAKESNAPSHOT RETURN\n");
        return snapshotid;
 #endif
 }
@@ -402,7 +396,7 @@ void rollBack(snapshot_id theID)
         */
        if (!sTemp) {
                sTemp = 1;
-               SSDEBUG("Invoked rollback\n");
+               DEBUG("Invoked rollback\n");
                exit(EXIT_SUCCESS);
        }
        /*