Skip to content

Commit 360b0db

Browse files
committed
little fix
1 parent 53e8677 commit 360b0db

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

examples/Makefile

+14
Original file line numberDiff line numberDiff line change
@@ -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-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "../channel.h"
1+
#include "../include/channel.h"
22
#include <sstream>
33
#include <thread>
44
#include <vector>

0 commit comments

Comments
 (0)