Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Libc.mkfifo #34587

Merged
merged 19 commits into from
Oct 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into mkfifo
  • Loading branch information
vtjnash committed Sep 27, 2023
commit 96d3e14e501bc703caa3a4ef9d26198714cd9022
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ Build system changes
New library functions
---------------------

* The new `Libc.mkfifo` function wraps `mkfifo` C function on Unix platforms ([#34587]).
* The new `Libc.mkfifo` function wraps the `mkfifo` C function on Unix platforms ([#34587]).
* `hardlink(src, dst)` can be used to create hard links. ([#41639])
* `diskstat(path=pwd())` can be used to return statistics about the disk. ([#42248])
* `copyuntil(out, io, delim)` and `copyline(out, io)` copy data into an `out::IO` stream ([#48273]).

New library features
--------------------
Expand Down
5 changes: 3 additions & 2 deletions base/libc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ import Base: transcode, windowserror, show
import Base: memcpy, memmove, memset, memcmp
import Core.Intrinsics: bitcast

export FILE, TmStruct, strftime, strptime, getpid, gethostname, free, malloc, mkfifo,
calloc, realloc, errno, strerror, flush_cstdio, systemsleep, time, transcode
export FILE, TmStruct, strftime, strptime, getpid, gethostname, free, malloc, memcpy,
memmove, memset, calloc, realloc, errno, strerror, flush_cstdio, systemsleep, time,
transcode, mkfifo
if Sys.iswindows()
export GetLastError, FormatMessage
end
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.