summaryrefslogtreecommitdiff
path: root/src/dged/process.h
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2025-11-21 21:52:14 +0100
committerAlbert Cervin <albert@acervin.com>2025-11-21 21:52:14 +0100
commitfa9277746ffc22b457d3c9cf96b91c5c73d5efc4 (patch)
tree4dc3a251580013efe2b91e428a295c5d8e8ed549 /src/dged/process.h
parent3940a20f62baf567cf31e1206adba050b477c9fa (diff)
downloaddged-fa9277746ffc22b457d3c9cf96b91c5c73d5efc4.tar.gz
dged-fa9277746ffc22b457d3c9cf96b91c5c73d5efc4.tar.xz
dged-fa9277746ffc22b457d3c9cf96b91c5c73d5efc4.zip
Rename the standard fds in process
To not collide with the <stdio.h> globals for stdin, stdout and stderr.
Diffstat (limited to 'src/dged/process.h')
-rw-r--r--src/dged/process.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dged/process.h b/src/dged/process.h
index cefec8c..179b9fa 100644
--- a/src/dged/process.h
+++ b/src/dged/process.h
@@ -13,9 +13,9 @@ typedef int fd_t;
struct platform_process;
struct process {
uint64_t id;
- fd_t stdin;
- fd_t stdout;
- fd_t stderr;
+ fd_t stdin_;
+ fd_t stdout_;
+ fd_t stderr_;
struct platform_process *impl;
};