Overview
| Comment: | Corrected arguments passed to mtt_write when dumping data (sigint). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8fac9051fe1b00c8af86f4cd4ffa9942 |
| User & Date: | geraint@users.sourceforge.net on 2002-07-24 14:00:12.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-07-24
| ||
| 19:26:20 |
Axis range entry responds to return key and adjusts range instantaneously. Selection of Z parameter automatically switches to 3D mode. check-in: 9b5bbc91af user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 14:00:12 | Corrected arguments passed to mtt_write when dumping data (sigint). check-in: 8fac9051fe user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2002-07-22
| ||
| 11:39:41 | ditto. check-in: e694e90bc5 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/make_ode2odes
from [f776f6771d]
to [d3a008bc98].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.80 2002/05/22 09:35:49 geraint
## Added insertor variable to stop sh-mode font-lock from getting hopelessly confused by embedded C++.
##
## Revision 1.79 2002/05/20 13:42:31 gawthrop
## Uses simpar.first for first printed output
##
## Revision 1.78 2002/05/11 01:14:17 geraint
| > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.81 2002/07/11 13:00:23 geraint
## Declared more function arguments to be "const" - improves compiler optimisation.
##
## Revision 1.80 2002/05/22 09:35:49 geraint
## Added insertor variable to stop sh-mode font-lock from getting hopelessly confused by embedded C++.
##
## Revision 1.79 2002/05/20 13:42:31 gawthrop
## Uses simpar.first for first printed output
##
## Revision 1.78 2002/05/11 01:14:17 geraint
|
| ︙ | ︙ | |||
1120 1121 1122 1123 1124 1125 1126 |
#include <csignal>
void set_signal_handlers (void);
void dump_data (std::ostream &file)
{
ColumnVector null (0);
| | | 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 |
#include <csignal>
void set_signal_handlers (void);
void dump_data (std::ostream &file)
{
ColumnVector null (0);
mtt_write (0.0, null, null, 0, 0, true, file);
}
void handle_signal (int signum)
{
// handle some signals to ensure data is written.
std::cerr $insertor "# Writing data to MTT.core (signal " $insertor signum $insertor ")" $insertor std::endl;
std::ofstream corefile ("MTT.core");
|
| ︙ | ︙ |