summaryrefslogtreecommitdiff
path: root/Ganlib/src/XABORT.f90
diff options
context:
space:
mode:
authorstainer_t <thomas.stainer@oecd-nea.org>2025-09-08 13:48:49 +0200
committerstainer_t <thomas.stainer@oecd-nea.org>2025-09-08 13:48:49 +0200
commit7dfcc480ba1e19bd3232349fc733caef94034292 (patch)
tree03ee104eb8846d5cc1a981d267687a729185d3f3 /Ganlib/src/XABORT.f90
Initial commit from Polytechnique Montreal
Diffstat (limited to 'Ganlib/src/XABORT.f90')
-rw-r--r--Ganlib/src/XABORT.f9033
1 files changed, 33 insertions, 0 deletions
diff --git a/Ganlib/src/XABORT.f90 b/Ganlib/src/XABORT.f90
new file mode 100644
index 0000000..7b83ca9
--- /dev/null
+++ b/Ganlib/src/XABORT.f90
@@ -0,0 +1,33 @@
+!
+!-----------------------------------------------------------------------
+!
+!Purpose:
+! Fortran-2003 bindings for XABORT.
+!
+!Copyright:
+! Copyright (C) 2009 Ecole Polytechnique de Montreal
+! This library is free software; you can redistribute it and/or
+! modify it under the terms of the GNU Lesser General Public
+! License as published by the Free Software Foundation; either
+! version 2.1 of the License, or (at your option) any later version.
+!
+!Author(s): A. Hebert
+!
+!-----------------------------------------------------------------------
+!
+subroutine XABORT(msg)
+ ! abort execution
+ use, intrinsic :: iso_c_binding
+ use LCMAUX
+ character(len=*) :: msg
+ character(kind=c_char), dimension(73) :: msg_c
+ interface
+ subroutine xabort_c (msg) bind(c)
+ use, intrinsic :: iso_c_binding
+ character(kind=c_char), dimension(*) :: msg
+ end subroutine xabort_c
+ end interface
+ flush(6)
+ call STRCUT(msg_c, msg)
+ call xabort_c(msg_c)
+end subroutine XABORT