X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=README.md;h=97d02c4657e8cbd3353a28ed001be8cc1d83c633;hb=8db938f1d3ce0af4d1b3786d2b02b925a334867d;hp=9210f42f863d43b9dff0d8f3c203fcc826a4da2d;hpb=cefc823735d6a81c8e5a56b9ebeb61b9061f3ba3;p=btree diff --git a/README.md b/README.md index 9210f42..97d02c4 100644 --- a/README.md +++ b/README.md @@ -13,17 +13,9 @@ threads2i.c Multi-Threaded/Multi-Process with latching implemented by a latc threads2j.c Multi-Threaded/Multi-Process with latching implemented by a latch manager with test & set locks in the first few btree pages with Linux futex system calls during contention. Recommended for linux. -The Foster code set includes the same three types of latching: - -Fosterbtreee.c Multi-Threaded/Single Process with latching implemented by a latch manager with pthreads/SRW latches in the first few btree pages. - -Fosterbtreef.c Multi-Threaded/Multi-Process with latching implemented by a latch manager with test & set latches in the first few btree pages with thread yield system calls during contention. - -Fosterbtreeg.c Multi-Threaded/Multi-Process with latching implemented by a latch manager with test & set locks in the first few btree pages with Linux futex system calls during contention. - Compilation is achieved on linux or Windows by: -gcc -D STANDALONE threads2h.c -lpthread +gcc -D STANDALONE threads2h.c -lpthread -lrt or