summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/tests/test_interprocess.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/tests/test_interprocess.c b/source/tests/test_interprocess.c
index 308c511..ee25324 100644
--- a/source/tests/test_interprocess.c
+++ b/source/tests/test_interprocess.c
@@ -17,9 +17,6 @@ typedef struct {
enum { STATE_INIT, STATE_READY, STATE_DONE };
int run_writer() {
- printf("Run writer.\n");
- fflush(stdout);
-
shared_memory_t mem = shared_memory_open(
SZ(NAME), sizeof(shared_data_t), SHARED_MEMORY_CREATE);
@@ -73,9 +70,6 @@ int run_writer() {
}
int run_reader() {
- printf("Run reader.\n");
- fflush(stdout);
-
struct timespec t0;
timespec_get(&t0, TIME_UTC);