~autumnull/haredo-devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
2

[PATCH] haredo.ha: pipe_flag is pipe_flags now

Details
Message ID
<20230526194045.6274-1-maxschillinger@web.de>
DKIM signature
missing
Download raw message
Patch: +1 -1
Signed-off-by: Max Schillinger <maxschillinger@web.de>
---
 src/haredo.ha | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/haredo.ha b/src/haredo.ha
index 036bf4f..8f6d6f9 100644
--- a/src/haredo.ha
+++ b/src/haredo.ha
@@ -62,7 +62,7 @@ export fn main() void = {
	// a slot is acquired, and writing a byte to the pipe when a slot is freed.
	let (rd, wr) = match (os::getenv("HAREDO_PIPE")) {
	case void =>
		yield unix::pipe(unix::pipe_flag::NOCLOEXEC)!;
		yield unix::pipe(unix::pipe_flags::NOCLOEXEC)!;
	case let s: str =>
		let (rd, wr) = strings::cut(s, ",");
		let rd = io::fdopen(strconv::stoi(rd)!);
--
2.40.1
Details
Message ID
<b56cb596-5cf0-4611-3d73-931239029aa0@posteo.net>
In-Reply-To
<20230526194045.6274-1-maxschillinger@web.de> (view parent)
DKIM signature
missing
Download raw message
known issue, blocked on this patch
https://lists.sr.ht/~sircmpwn/hare-dev/patches/41249
Details
Message ID
<5110cd7d-8a86-6410-bedb-ff370911c7a2@posteo.net>
In-Reply-To
<b56cb596-5cf0-4611-3d73-931239029aa0@posteo.net> (view parent)
DKIM signature
missing
Download raw message
Thanks (i gave up waiting)

~Autumn
Reply to thread Export thread (mbox)