Skip to content

Commit

Permalink
Added program comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
baumgarr committed Apr 17, 2015
1 parent a215675 commit f250afe
Show file tree
Hide file tree
Showing 3 changed files with 229 additions and 44 deletions.
11 changes: 9 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ using namespace std;
//*********************************************
extern Global global;


//*********************************************************************
//* Segmentation fault. This is triggered to print a stack trace.
//*********************************************************************
void fault_handler(int sig) {
void *array[30];
size_t size;
Expand All @@ -59,8 +61,13 @@ void fault_handler(int sig) {
exit(1);
}

//using namespace cv;



//using namespace cv;
//*********************************************************************
//* Main entry point to the program.
//*********************************************************************
int main(int argc, char *argv[])
{
signal(SIGSEGV, fault_handler); // install our handler
Expand Down
Loading

0 comments on commit f250afe

Please sign in to comment.