diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-10-28 18:37:50 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-10-28 18:37:50 +0200 |
commit | 8b39a701ec9a09c1a66bce5ebfab99aacfb77815 (patch) | |
tree | a75576c168a43f98a0c584d7879730388e1abc3e | |
parent | 66783999ab3cef2d044951013ecc61abf3f31026 (diff) | |
download | kit-8b39a701ec9a09c1a66bce5ebfab99aacfb77815.zip |
interprocess: remove logging
-rw-r--r-- | source/tests/test_interprocess.c | 6 |
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); |