Skip to content

Commit 92cc624

Browse files
committed
Update README
1 parent c92a7ea commit 92cc624

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
#Wolf -- a simple shared memory container
1+
# Wolf -- a simple shared memory container
22

3-
##Module
3+
## Module
44

5-
###Area
5+
### Area
66
Area is the interface easy to create or load a shared memory buffer.
77
It can be use in multi thread or process.
88
To be simple and fast, when it allocate a buffer it will never use the buffer again.
99

10-
#####usage:
10+
##### usage:
1111
~~~~
1212
#include "area/shm_area.h"
1313
@@ -25,12 +25,12 @@ To be simple and fast, when it allocate a buffer it will never use the buffer ag
2525
~~~~
2626

2727

28-
###Container
28+
### Container
2929
Container if a set of structure base on area.
3030
For more easy to use, it's designed as template.
3131
Easy to use is the most important !
3232

33-
1. ####LockFreeSkipList
33+
1. #### LockFreeSkipList
3434

3535
Design for multi thread and process, it can be use by multi writer and multi reader.
3636
The algorithm is from *The Art of Multiprocessor Programming By Maurice Herlihy, Nir Shavit*
@@ -39,7 +39,7 @@ Easy to use is the most important !
3939

4040
Atomic library can be used in shared memory and you can test it by the code shared_memory_atomic_test.cpp in test folder.
4141

42-
#####usage:
42+
##### usage:
4343
~~~~
4444
#include "area/shm_area.h"
4545
#include "container/shm_manager.h"

0 commit comments

Comments
 (0)