Releases: emmt/InterProcessCommunication.jl
v0.1.6
v0.1.5
InterProcessCommunication v0.1.5
- Fix definition of constants
SIGUSR1andSIGUSR2(see PR 12).
Merged pull requests:
v0.1.4
InterProcessCommunication v0.1.4
convert(RawFD, f)andRawFD(f)yield the raw file descriptor ofFileDescriptorinstancef.
v0.1.3
InterProcessCommunication v0.1.3
-
Argument
readonlyis now a keyword inShmIdconstructor andshmidmethod. Old behavior where it was the optional last argument has been deprecated. -
Argument
shmctlchecks that the buffer is large enough. CallIPC.unsafe_shmctto avoid this check or to directly pass a pointer.
Merged pull requests:
- Avoid passing an Int to stat (#10) (@LilithHafner)
- fix API mistake for
opensyscall (#11) (@vtjnash)
Closed issues:
- semaphore permissions: Trying to set 0o666 results in 0o664 instead (#8)
v0.1.2
InterProcessCommunication v0.1.2
-
Export
umaskto set the calling process's file mode creation mask. -
When creating a semaphore,
Semaphore(...)ignores the calling process's file mode creation mask for the access permissions whileopen(Semaphore, ...)masks the access permissions against the processumasklikesem_open. -
Standard C types are no longer prefixed by
_typeof_. For example, Julia equivalent of Cmode_tis given by constantIPC.mode_t.
v0.1.1
InterProcessCommunication v0.1.1
- Update doc.
- Fix
setindex!to return its first argument. This is a minor fix.
Merged pull requests:
- Install TagBot as a GitHub Action (#1) (@JuliaTagBot)
v0.1.0
This is the first release of a Julia package for inter-process communications.