Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29286 Discussions

Porting Fortran code from VMS to Windows

aliwin
Beginner
487 Views
I have processes written in Fortran that run on OpenVMS. The processes use VMS mailbox to communicate. I started porting those processes to windows using Intel Fortran. How to replace the VMS Mailbox communication concept in Windows-Intel Fortran ?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
487 Views
The closest analog would be a named pipe. Once you create the pipe you can open it like a file and do reads and writes. If you want finer control, you can use the Win32 APIs to read and write. You'll want to study the Microsoft MSDN Library description of pipes, and you may find there some other mechanism that better suits your needs.
0 Kudos
Reply