From 89a750a6ec0a040f73d3291e6791b3d142123f25 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Thu, 3 Jan 2013 12:24:34 -0800 Subject: [PATCH] snapshot: more renaming --- main.cc | 2 +- snapshot-interface.h | 7 ++++--- snapshot.cc | 7 ++++--- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/main.cc b/main.cc index 6b9cb905..dc3f6f4d 100644 --- a/main.cc +++ b/main.cc @@ -146,5 +146,5 @@ int main(int argc, char **argv) redirect_output(); /* Let's jump in quickly and start running stuff */ - initSnapshotLibrary(10000, 1024, 1024, 4000, &model_main); + snapshot_system_init(10000, 1024, 1024, 4000, &model_main); } diff --git a/snapshot-interface.h b/snapshot-interface.h index b024e5a8..7f4de211 100644 --- a/snapshot-interface.h +++ b/snapshot-interface.h @@ -1,5 +1,6 @@ -/** @file snapshot-interface.h - * @brief C++ layer on top of snapshotting system. +/** + * @file snapshot-interface.h + * @brief C interface layer on top of snapshotting system */ #ifndef __SNAPINTERFACE_H @@ -8,7 +9,7 @@ typedef unsigned int snapshot_id; typedef void (*VoidFuncPtr)(); -void initSnapshotLibrary(unsigned int numbackingpages, +void snapshot_system_init(unsigned int numbackingpages, unsigned int numsnapshots, unsigned int nummemoryregions, unsigned int numheappages, VoidFuncPtr entryPoint); diff --git a/snapshot.cc b/snapshot.cc index 16b0b616..fb1f9115 100644 --- a/snapshot.cc +++ b/snapshot.cc @@ -398,10 +398,11 @@ static void fork_roll_back(snapshot_id theID) #endif /* !USE_MPROTECT_SNAPSHOT */ -/** The initSnapshotLibrary function initializes the snapshot library. - * @param entryPoint the function that should run the program. +/** + * @brief Initializes the snapshot system + * @param entryPoint the function that should run the program. */ -void initSnapshotLibrary(unsigned int numbackingpages, +void snapshot_system_init(unsigned int numbackingpages, unsigned int numsnapshots, unsigned int nummemoryregions, unsigned int numheappages, VoidFuncPtr entryPoint) { -- 2.34.1