Skip to content
Snippets Groups Projects
Commit 668115da authored by Vincent Hardion's avatar Vincent Hardion
Browse files

Breakpad Migration

parent 2bd0a4a9
Branches
Tags
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</parent> </parent>
<groupId>fr.soleil.device</groupId> <groupId>fr.soleil.device</groupId>
<artifactId>SingleShotDIO-${aol}-${mode}</artifactId> <artifactId>SingleShotDIO-${aol}-${mode}</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
<packaging>nar</packaging> <packaging>nar</packaging>
<name>SingleShotDIO</name> <name>SingleShotDIO</name>
<description>SingleShotDIO device</description> <description>SingleShotDIO device</description>
......
static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/InputOutput/ADLINK/SingleShotDIO/src/main.cpp,v 1.2 2010-03-11 09:51:10 flanglois Exp $"; static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/InputOutput/ADLINK/SingleShotDIO/src/main.cpp,v 1.3 2010-10-06 21:43:29 vince_soleil Exp $";
//+============================================================================= //+=============================================================================
// //
// file : main.cpp // file : main.cpp
...@@ -10,11 +10,14 @@ static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/InputOutput/AD ...@@ -10,11 +10,14 @@ static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/InputOutput/AD
// //
// project : TANGO Device Server // project : TANGO Device Server
// //
// $Author: flanglois $ // $Author: vince_soleil $
// //
// $Revision: 1.2 $ $ // $Revision: 1.3 $ $
// //
// $Log: not supported by cvs2svn $ // $Log: not supported by cvs2svn $
// Revision 1.2 2010/03/11 09:51:10 flanglois
// - moved tango.h above asl/ace's .h
//
// Revision 1.1.1.1 2004/07/02 15:24:52 syldup // Revision 1.1.1.1 2004/07/02 15:24:52 syldup
// initial import // initial import
// //
...@@ -33,12 +36,21 @@ static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/InputOutput/AD ...@@ -33,12 +36,21 @@ static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/InputOutput/AD
#include <tango.h> #include <tango.h>
#include <ace/ACE.h> #include <ace/ACE.h>
#if defined(ENABLE_CRASH_REPORT)
# include <crashreporting/crash_report.h>
#else
# define DECLARE_CRASH_HANDLER
# define INSTALL_CRASH_HANDLER
#endif
DECLARE_CRASH_HANDLER;
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
INSTALL_CRASH_HANDLER;
Tango::Util *tg; Tango::Util *tg = 0;
try try
{ {
// Initialise the device server // Initialise the device server
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment