In debug mode without executing any commands sdbg.exe reports the following message:
unknown type 17
What is the meaning of this warning? Later in the program the debugger report:
Error 416, Bad request for stack memory
Are the messages perhaps somehow related. The code I am trying was mainly developed using gfortran where it works without any problems.
Some advice or some hints will be really very helpful.
The first code lines are as follows:
program FEMP
use xml_data_assem_t
use FEMPtype
use FEMPutil
implicit none
integer :: void
type(file_type) :: fls
type(fpl_type) :: fpl
type(age_type) :: age
!
integer :: t,tn
double precision :: pi,slave_angle
interface
integer function fn_draw_polygons(fls)
use FEMPtype
type(file_type),intent(inout) :: fls
end function
end interface
interface
subroutine initial_mesh(fls,fpl)
use FEMPtype
implicit none
type(file_type),intent(in) :: fls
type(fpl_type),intent(out) :: fpl
end subroutine initial_mesh
end interface
interface
subroutine makeneigbors(fpl)
use FEMPtype
implicit none
type(fpl_type),intent(inout) :: fpl
end subroutine makeneigbors
end interface
interface
subroutine save_fpl(fls,fpl,dtheta,rr)
use FEMPtype
IMPLICIT NONE
type(file_type),intent(in) :: fls
type(fpl_type),intent(in) :: fpl
double precision,intent(in) :: dtheta,rr
end subroutine save_fpl
end interface
interface
subroutine bld_adp_all(fpl,t,tn)
use FEMPtype
implicit none
type(fpl_type),intent(inout) :: fpl
integer :: t,tn
end subroutine bld_adp_all
end interface