2544
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
2544
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #ifdef HAVE_CONFIG_H |
|
24 #include <config.h> |
|
25 #endif |
|
26 |
3808
|
27 #include <stdlib.h> |
2544
|
28 #include <string.h> |
|
29 |
|
30 #include "f77-fcn.h" |
3808
|
31 #include "lo-error.h" |
2544
|
32 |
|
33 void |
|
34 copy_f77_context (void *from, void *to, unsigned int size) |
|
35 { |
|
36 memcpy (to, from, size); |
|
37 } |
|
38 |
3808
|
39 /* All the STOP statements in the Fortran routines have been replaced |
|
40 with a call to XSTOPX. |
|
41 |
|
42 XSTOPX jumps back to the entry point for the Fortran function that |
|
43 called us. Then the calling function should do whatever cleanup |
3809
|
44 is necessary. */ |
3808
|
45 |
|
46 volatile void |
3887
|
47 F77_FUNC (xstopx, XSTOPX) (const char *s, long int slen) |
3808
|
48 { |
3809
|
49 /* Skip printing message if it is just a single blank character. */ |
|
50 if (s && slen > 0 && ! (slen == 1 && *s == ' ')) |
3808
|
51 (*current_liboctave_error_handler) ("%.*s", s, slen); |
|
52 |
|
53 longjmp (f77_context, 1); |
|
54 } |
|
55 |
2544
|
56 /* |
|
57 ;;; Local Variables: *** |
|
58 ;;; mode: C++ *** |
|
59 ;;; End: *** |
|
60 */ |