We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53e8677 commit 360b0dbCopy full SHA for 360b0db
examples/Makefile
@@ -0,0 +1,14 @@
1
+run: async_channel sync_channel
2
+ ./sync_channel
3
+ echo "\n"
4
+ ./async_channel
5
+
6
+async_channel:
7
+ g++ async_channel.cc -o async_channel -pthread --std=c++11
8
9
+sync_channel:
10
+ g++ sync_channel.cc -o sync_channel -pthread --std=c++11
11
12
+clean:
13
+ rm async_channel
14
+ rm sync_channel
examples/async_channel.cc
@@ -1,4 +1,4 @@
-#include "../channel.h"
+#include "../include/channel.h"
#include <sstream>
#include <thread>
#include <vector>
0 commit comments