| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-01-31 16:21:24 +0100 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-01-31 16:21:24 +0100 |
| commit | 509ac16d892aeb5091f68620247f6815d2e4b5f5 (patch) | |
| tree | c4adebce7791c10c4c362b77f32d4a339e8c8125 /src/pipe | |
| parent | 1373211465c34015ee900e097aa87fbffb401187 (diff) | |
Switched to sockets, continuing implementation...
Diffstat (limited to 'src/pipe')
| -rw-r--r-- | src/pipe/pipe.c | 1 | ||||
| -rw-r--r-- | src/pipe/pipe.h | 2 | ||||
| -rw-r--r-- | src/pipe/pipe_types.h | 6 |
3 files changed, 4 insertions, 5 deletions
diff --git a/src/pipe/pipe.c b/src/pipe/pipe.c deleted file mode 100644 index 8f414f5..0000000 --- a/src/pipe/pipe.c +++ /dev/null @@ -1 +0,0 @@ -/* TODO */ diff --git a/src/pipe/pipe.h b/src/pipe/pipe.h index 3c5fd44..9b9445c 100644 --- a/src/pipe/pipe.h +++ b/src/pipe/pipe.h @@ -142,6 +142,4 @@ ZoO_PRINT_S_STDERR(pipe, "F", str);\ }\ ) - -/* TODO: add missing pipe functions */ #endif diff --git a/src/pipe/pipe_types.h b/src/pipe/pipe_types.h index cfeb514..91cf0c3 100644 --- a/src/pipe/pipe_types.h +++ b/src/pipe/pipe_types.h @@ -1,6 +1,8 @@ #ifndef _ZoO_PIPE_PIPE_TYPES_H_ #define _ZoO_PIPE_PIPE_TYPES_H_ +#define ZoO_PIPE_NAME_LENGTH 255 + #include <stdio.h> struct ZoO_pipe @@ -11,8 +13,8 @@ struct ZoO_pipe struct ZoO_pipe_names { - char request_pipe[255]; - char reply_pipe[255]; + char request_pipe[ZoO_PIPE_NAME_LENGTH]; + char reply_pipe[ZoO_PIPE_NAME_LENGTH]; }; // const struct ZoO_pipe io [const restrict static 1] |


