mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Add missed file to repo
This commit is contained in:
parent
488c2e8066
commit
5024cc4e2d
45
lib/shmem.f90
Normal file
45
lib/shmem.f90
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
module shmem
|
||||||
|
! external routines wrapping the Qt QSharedMemory class
|
||||||
|
interface
|
||||||
|
function shmem_create (size) bind(C, name="shmem_create")
|
||||||
|
use iso_c_binding, only: c_bool, c_int
|
||||||
|
logical(c_bool) :: shmem_create
|
||||||
|
integer(c_int), value, intent(in) :: size
|
||||||
|
end function shmem_create
|
||||||
|
|
||||||
|
subroutine shmem_setkey (key) bind(C, name="shmem_setkey")
|
||||||
|
use iso_c_binding, only: c_bool, c_char
|
||||||
|
character(kind=c_char), intent(in) :: key(*)
|
||||||
|
end subroutine shmem_setkey
|
||||||
|
|
||||||
|
function shmem_attach () bind(C, name="shmem_attach")
|
||||||
|
use iso_c_binding, only: c_bool
|
||||||
|
logical(c_bool) :: shmem_attach
|
||||||
|
end function shmem_attach
|
||||||
|
|
||||||
|
function shmem_address() bind(C, name="shmem_address")
|
||||||
|
use, intrinsic :: iso_c_binding, only: c_ptr
|
||||||
|
type(c_ptr) :: shmem_address
|
||||||
|
end function shmem_address
|
||||||
|
|
||||||
|
function shmem_size() bind(C, name="shmem_size")
|
||||||
|
use, intrinsic :: iso_c_binding, only: c_int
|
||||||
|
integer(c_int) :: shmem_size
|
||||||
|
end function shmem_size
|
||||||
|
|
||||||
|
function shmem_lock () bind(C, name="shmem_lock")
|
||||||
|
use iso_c_binding, only: c_bool
|
||||||
|
logical(c_bool) :: shmem_lock
|
||||||
|
end function shmem_lock
|
||||||
|
|
||||||
|
function shmem_unlock () bind(C, name="shmem_unlock")
|
||||||
|
use iso_c_binding, only: c_bool
|
||||||
|
logical(c_bool) :: shmem_unlock
|
||||||
|
end function shmem_unlock
|
||||||
|
|
||||||
|
function shmem_detach () bind(C, name="shmem_detach")
|
||||||
|
use iso_c_binding, only: c_bool
|
||||||
|
logical(c_bool) :: shmem_detach
|
||||||
|
end function shmem_detach
|
||||||
|
end interface
|
||||||
|
end module shmem
|
Loading…
Reference in New Issue
Block a user