- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have always used sleepqq function with 'use ifport as per the help file'. So how does tthe following resolve istelf, is there a sleepqq intrinsic/extensionm buildt into ifort now?
[fortran]program Console1
implicit none
call sleepqq(1)
print *, 'Hello World'
end program Console1[/fortran]
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Your call happens to match the run-time library call. The advantage of 'use ifport' would be compile-time checking, and to take care of the possibility that the internal details might change in the future.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, I decided to create my own wrapper so as not to have ifport all over the place, and as it is definatelty a non-os portable windows app opted to use the sdk sleep function as the basis. I guess sleepqq is a wrapper for a clib routine.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page