X-Git-Url: https://pd.if.org/git/?p=btree;a=blobdiff_plain;f=README.md;h=468f6243206a69e7d193ae17128a98e991825589;hp=9210f42f863d43b9dff0d8f3c203fcc826a4da2d;hb=6b4425e582af0e64d26e45936240f78ac5936d46;hpb=cefc823735d6a81c8e5a56b9ebeb61b9061f3ba3 diff --git a/README.md b/README.md index 9210f42..468f624 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,6 @@ 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