summaryrefslogtreecommitdiff
path: root/cesar/host/station/station.h
diff options
context:
space:
mode:
authorThierry Carré2013-02-18 19:04:28 +0100
committerThierry Carré2013-02-22 16:45:07 +0100
commitfd0932bb40915df16e8cda735b238fa2eb198750 (patch)
tree2a5fa5add893043e3cc5c8eb6acee669d7bbfea6 /cesar/host/station/station.h
parent668ae87c9040e6ab92244995bff4664295cac7da (diff)
cesar: rename pipe_*_fd fields in station_ctx_t, refs #2979
rename in station_ctx_t : - 'pipe_log_fd' to 'fd_log' - 'pipe_in_fd' to 'fd_in' - 'pipe_out_fd' to 'fd_out'
Diffstat (limited to 'cesar/host/station/station.h')
-rw-r--r--cesar/host/station/station.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cesar/host/station/station.h b/cesar/host/station/station.h
index 9e3af28f96..85a831d3d3 100644
--- a/cesar/host/station/station.h
+++ b/cesar/host/station/station.h
@@ -86,12 +86,12 @@ struct station_ctx
tick_t current_tick_tck;
/** station seed (may be needed for cesar initialization) */
u32 seed;
- /** file descriptor for messaging input pipe */
- int pipe_in_fd;
- /** file descriptor for messaging output pipe */
- int pipe_out_fd;
- /** output pipe file desc to send debug data */
- int pipe_log_fd;
+ /** File descriptor for messaging input. */
+ int fd_in;
+ /** File descriptor for messaging output. */
+ int fd_out;
+ /** Output file descriptor to send debug data. */
+ int fd_log;
station_log_level_t log_level;
unsigned long log_mask;
struct netclock_callback *ecos_tick_cb;