From: Brian Norris Date: Fri, 25 May 2012 23:45:37 +0000 (-0700) Subject: snapshot: fix indentation X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6d6daf85f38b898920a4fa7753c073fb5110ce52;p=c11tester.git snapshot: fix indentation --- diff --git a/snapshot.cc b/snapshot.cc index 3666667e..a092f937 100644 --- a/snapshot.cc +++ b/snapshot.cc @@ -134,12 +134,12 @@ extern "C" { #endif void initSnapShotLibrary(unsigned int numbackingpages, unsigned int numsnapshots, unsigned int nummemoryregions, unsigned int numheappages, MyFuncPtr entryPoint){ #if USE_CHECKPOINTING - /* Setup a stack for our signal handler.... */ - stack_t ss; - ss.ss_sp = MYMALLOC(SIGSTACKSIZE); - ss.ss_size = SIGSTACKSIZE; - ss.ss_flags = 0; - sigaltstack(&ss, NULL); + /* Setup a stack for our signal handler.... */ + stack_t ss; + ss.ss_sp = MYMALLOC(SIGSTACKSIZE); + ss.ss_size = SIGSTACKSIZE; + ss.ss_flags = 0; + sigaltstack(&ss, NULL); struct sigaction sa; sa.sa_flags = SA_SIGINFO | SA_NODEFER | SA_RESTART | SA_ONSTACK;